Changes in uspace/drv/bus/usb/usbhub/main.c [a1cb170:54d1ad9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/main.c
ra1cb170 r54d1ad9 47 47 * For more information see section 11.15.1 of USB 1.1 specification. 48 48 */ 49 static usb_endpoint_description_t hub_status_change_endpoint_description = { 49 static const usb_endpoint_description_t hub_status_change_endpoint_description = 50 { 50 51 .transfer_type = USB_TRANSFER_INTERRUPT, 51 52 .direction = USB_DIRECTION_IN, … … 56 57 }; 57 58 58 /** 59 * USB hub driver operations 60 * 61 * The most important one is add_device, which is set to usb_hub_add_device. 62 */ 63 static usb_driver_ops_t usb_hub_driver_ops = { 64 .add_device = usb_hub_add_device 59 /** USB hub driver operations. */ 60 static const usb_driver_ops_t usb_hub_driver_ops = { 61 .device_add = usb_hub_device_add, 62 // .device_rem = usb_hub_device_remove, 63 .device_gone = usb_hub_device_gone, 65 64 }; 66 65 67 66 /** Hub endpoints, excluding control endpoint. */ 68 static usb_endpoint_description_t *usb_hub_endpoints[] = {67 static const usb_endpoint_description_t *usb_hub_endpoints[] = { 69 68 &hub_status_change_endpoint_description, 70 69 NULL, 71 70 }; 72 71 /** Static usb hub driver information. */ 73 static usb_driver_t usb_hub_driver = {72 static const usb_driver_t usb_hub_driver = { 74 73 .name = NAME, 75 74 .ops = &usb_hub_driver_ops, 76 75 .endpoints = usb_hub_endpoints 77 76 }; 78 79 77 80 78 int main(int argc, char *argv[])
Note:
See TracChangeset
for help on using the changeset viewer.