Changeset e991937 in mainline for uspace/drv
- Timestamp:
- 2013-08-07T12:10:51Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2757247
- Parents:
- d8d100c
- Location:
- uspace/drv/bus/usb
- Files:
-
- 4 edited
-
ehci/main.c (modified) (1 diff)
-
ohci/ohci.c (modified) (1 diff)
-
uhci/uhci.c (modified) (1 diff)
-
vhc/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/main.c
rd8d100c re991937 89 89 90 90 /* High Speed, no bandwidth */ 91 ret = hcd_ddf_setup_ device(device, NULL, USB_SPEED_HIGH, 0, NULL);91 ret = hcd_ddf_setup_hc(device, USB_SPEED_HIGH, 0, NULL); 92 92 CHECK_RET_RETURN(ret, 93 93 "Failed to init generci hcd driver: %s\n", str_error(ret)); -
uspace/drv/bus/usb/ohci/ohci.c
rd8d100c re991937 131 131 132 132 /* Initialize generic HCD driver */ 133 ret = hcd_ddf_setup_ device(device, NULL, USB_SPEED_FULL,133 ret = hcd_ddf_setup_hc(device, USB_SPEED_FULL, 134 134 BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11); 135 135 if (ret != EOK) { -
uspace/drv/bus/usb/uhci/uhci.c
rd8d100c re991937 131 131 } 132 132 133 ret = hcd_ddf_setup_ device(device, NULL, USB_SPEED_FULL,133 ret = hcd_ddf_setup_hc(device, USB_SPEED_FULL, 134 134 BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11); 135 135 CHECK_RET_RETURN(ret, "Failed to setup UHCI HCD.\n"); -
uspace/drv/bus/usb/vhc/main.c
rd8d100c re991937 86 86 87 87 /* Initialize generic structures */ 88 ret = hcd_ddf_setup_ device(dev, NULL, USB_SPEED_FULL,88 ret = hcd_ddf_setup_hc(dev, USB_SPEED_FULL, 89 89 BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11); 90 90 if (ret != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.
