Changes in uspace/drv/usbhub/main.c [361fcec:215b001] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/main.c
r361fcec r215b001 55 55 }; 56 56 57 /** 58 * usb hub driver operations 59 * 60 * The most important one is add_device, which is set to usb_hub_add_device. 61 */ 57 62 58 static usb_driver_ops_t usb_hub_driver_ops = { 63 59 .add_device = usb_hub_add_device 64 60 }; 65 61 66 /**67 * hub endpoints, excluding control endpoint68 */69 62 static usb_endpoint_description_t *usb_hub_endpoints[] = { 70 63 &hub_status_change_endpoint_description, … … 72 65 }; 73 66 74 /**75 * static usb hub driver information76 */77 67 static usb_driver_t usb_hub_driver = { 78 68 .name = NAME,
Note:
See TracChangeset
for help on using the changeset viewer.