Changeset 32ec5671 in mainline for uspace/drv/bus/usb/uhcirh/port.c
- Timestamp:
- 2011-10-12T20:31:29Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d103aef
- Parents:
- 013517b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhcirh/port.c
r013517b r32ec5671 45 45 46 46 static int uhci_port_check(void *port); 47 static int uhci_port_reset_enable( int portno,void *arg);47 static int uhci_port_reset_enable(void *arg); 48 48 static int uhci_port_new_device(uhci_port_t *port, usb_speed_t speed); 49 49 static int uhci_port_remove_device(uhci_port_t *port); … … 213 213 * Resets and enables the ub port. 214 214 */ 215 int uhci_port_reset_enable( int portno,void *arg)215 int uhci_port_reset_enable(void *arg) 216 216 { 217 217 uhci_port_t *port = arg; … … 260 260 do { 261 261 ret = usb_hc_new_device_wrapper(port->rh, &port->hc_connection, 262 speed, uhci_port_reset_enable, port ->number, port,262 speed, uhci_port_reset_enable, port, 263 263 &port->attached_device.address, NULL, NULL, 264 264 &port->attached_device.fun);
Note:
See TracChangeset
for help on using the changeset viewer.