Changeset cb69854 in mainline
- Timestamp:
- 2017-10-13T10:18:50Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 366e9b6
- Parents:
- 5995383c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/bus.c
r5995383c rcb69854 148 148 static int get_speed(bus_t *bus_base, usb_address_t address, usb_speed_t *speed) 149 149 { 150 // TODO: Implement me! 151 return ENOTSUP; 150 xhci_bus_t *bus = bus_to_xhci_bus(bus_base); 151 assert(bus); 152 153 // TODO: Use `xhci_get_port_speed` once we find the port corresponding to `address`. 154 *speed = USB_SPEED_SUPER; 155 return EOK; 152 156 } 153 157
Note:
See TracChangeset
for help on using the changeset viewer.