Changeset 0f79283b in mainline for uspace/lib/usb/src/port.c
- Timestamp:
- 2018-01-18T12:39:27Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2bff2cc2
- Parents:
- babcc423
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/port.c
rbabcc423 r0f79283b 41 41 * 42 42 * This subsystem abstracts the rather complicated state machine, and offers 43 * a simple call interface to announce events, and a callback structure for44 * implementations to supply the hardware-dependent part.43 * a simple interface to announce events and leave the fibril management on the 44 * library. 45 45 */ 46 46 … … 127 127 } 128 128 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; 129 void usb_port_enabled(usb_port_t *port) 130 { 131 assert(port); 132 133 fibril_mutex_lock(&port->guard); 135 134 fibril_condvar_broadcast(&port->enabled_cv); 136 135 fibril_mutex_unlock(&port->guard);
Note:
See TracChangeset
for help on using the changeset viewer.