Index: uspace/lib/usb/include/usb/hc.h
===================================================================
--- uspace/lib/usb/include/usb/hc.h	(revision 6a2187756caab77b286ddbfe813ebd3a703224f4)
+++ uspace/lib/usb/include/usb/hc.h	(revision 01086cfeff1a45bf2b48121df3074d6ffcd78f7b)
@@ -31,5 +31,5 @@
  */
 /** @file
- * General communication with host controller driver.
+ * General communication with host controller.
  */
 #ifndef LIBUSB_HC_H_
@@ -42,5 +42,11 @@
 #include <usb/usb.h>
 
-/** Connection to the host controller driver. */
+/** Connection to the host controller driver.
+ *
+ * This is a high level IPC communication wrapper. After the structure has been
+ * initialized using devman handle of an USB host controller, it
+ * will manage all communication to that host controller, including session
+ * creation/destruction and proper IPC protocol.
+ */
 typedef struct {
 	/** Devman handle of the host controller. */
@@ -88,7 +94,7 @@
     usb_endpoint_t, usb_direction_t);
 
-int usb_hc_control_read(usb_hc_connection_t *, usb_address_t, usb_endpoint_t,
+int usb_hc_read(usb_hc_connection_t *, usb_address_t, usb_endpoint_t,
     uint64_t, void *, size_t, size_t *);
-int usb_hc_control_write(usb_hc_connection_t *, usb_address_t, usb_endpoint_t,
+int usb_hc_write(usb_hc_connection_t *, usb_address_t, usb_endpoint_t,
     uint64_t, const void *, size_t);
 
