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