Index: uspace/lib/usb/src/port.c
===================================================================
--- uspace/lib/usb/src/port.c	(revision 5bccec32a6aa53d91c35fe402041aae3e14d0209)
+++ uspace/lib/usb/src/port.c	(revision 2c0564c67df2bfa02f0f8a115f7c2a3028a3b21a)
@@ -41,6 +41,6 @@
  *
  * This subsystem abstracts the rather complicated state machine, and offers
- * a simple call interface to announce events, and a callback structure for
- * implementations to supply the hardware-dependent part.
+ * a simple interface to announce events and leave the fibril management on the
+ * library.
  */
 
@@ -127,10 +127,9 @@
 }
 
-void usb_port_enabled(usb_port_t *port, usb_speed_t speed)
-{
-	assert(port);
-
-	fibril_mutex_lock(&port->guard);
-	port->speed = speed;
+void usb_port_enabled(usb_port_t *port)
+{
+	assert(port);
+
+	fibril_mutex_lock(&port->guard);
 	fibril_condvar_broadcast(&port->enabled_cv);
 	fibril_mutex_unlock(&port->guard);
