Changeset 25696fea in mainline for uspace/drv/bus/usb/vhc/hub.c
- Timestamp:
- 2011-10-15T20:05:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22ceff3a
- Parents:
- 1ccc32f (diff), 721d4b6e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/hub.c
r1ccc32f r25696fea 81 81 } 82 82 83 static int pretend_port_rest( int unused,void *unused2)83 static int pretend_port_rest(void *unused2) 84 84 { 85 85 return EOK; … … 114 114 115 115 ddf_fun_t *hub_dev; 116 rc = usb_hc_new_device_wrapper(hc_dev->dev, &hc_conn, 117 USB_SPEED_FULL, 118 pretend_port_rest, 0, NULL, 119 NULL, NULL, &rh_ops, hc_dev, &hub_dev); 116 rc = usb_hc_new_device_wrapper(hc_dev->dev, &hc_conn, USB_SPEED_FULL, 117 pretend_port_rest, NULL, NULL, &rh_ops, hc_dev, &hub_dev); 120 118 if (rc != EOK) { 121 119 usb_log_fatal("Failed to create root hub: %s.\n",
Note:
See TracChangeset
for help on using the changeset viewer.