Changeset ee9ea16 in mainline for uspace/drv/bus/usb/usbhub/main.c
- Timestamp:
- 2011-09-19T12:29:04Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d46b13d
- Parents:
- c94f643
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/main.c
rc94f643 ree9ea16 56 56 57 57 /** 58 * usbhub driver operations58 * USB hub driver operations 59 59 * 60 60 * The most important one is add_device, which is set to usb_hub_add_device. … … 64 64 }; 65 65 66 /** 67 * hub endpoints, excluding control endpoint 68 */ 66 /** Hub endpoints, excluding control endpoint. */ 69 67 static usb_endpoint_description_t *usb_hub_endpoints[] = { 70 68 &hub_status_change_endpoint_description, 71 NULL 69 NULL, 72 70 }; 73 74 /** 75 * static usb hub driver information 76 */ 71 /** Static usb hub driver information. */ 77 72 static usb_driver_t usb_hub_driver = { 78 73 .name = NAME, … … 85 80 { 86 81 printf(NAME ": HelenOS USB hub driver.\n"); 87 88 82 usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME); 89 83 … … 94 88 * @} 95 89 */ 96
Note:
See TracChangeset
for help on using the changeset viewer.