Changeset 0f79283b in mainline for uspace/lib/usb/src/port.c


Ignore:
Timestamp:
2018-01-18T12:39:27Z (7 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2bff2cc2
Parents:
babcc423
Message:

usb: remove speed storing (and fix that misuse in xhci rh)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/port.c

    rbabcc423 r0f79283b  
    4141 *
    4242 * This subsystem abstracts the rather complicated state machine, and offers
    43  * a simple call interface to announce events, and a callback structure for
    44  * implementations to supply the hardware-dependent part.
     43 * a simple interface to announce events and leave the fibril management on the
     44 * library.
    4545 */
    4646
     
    127127}
    128128
    129 void usb_port_enabled(usb_port_t *port, usb_speed_t speed)
    130 {
    131         assert(port);
    132 
    133         fibril_mutex_lock(&port->guard);
    134         port->speed = speed;
     129void usb_port_enabled(usb_port_t *port)
     130{
     131        assert(port);
     132
     133        fibril_mutex_lock(&port->guard);
    135134        fibril_condvar_broadcast(&port->enabled_cv);
    136135        fibril_mutex_unlock(&port->guard);
Note: See TracChangeset for help on using the changeset viewer.