Changes in uspace/drv/bus/usb/usbhub/main.c [a1cb170:5203e256] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/main.c
ra1cb170 r5203e256 1 1 /* 2 2 * Copyright (c) 2010 Vojtech Horky 3 * Copyright (c) 2011 Jan Vesely4 3 * All rights reserved. 5 4 * … … 39 38 #include <usb/dev/driver.h> 40 39 #include <usb/classes/classes.h> 41 #include <usb/debug.h>42 40 43 41 #include "usbhub.h" 42 #include "usbhub_private.h" 44 43 45 44 /** Hub status-change endpoint description. … … 57 56 58 57 /** 59 * USBhub driver operations58 * usb hub driver operations 60 59 * 61 60 * The most important one is add_device, which is set to usb_hub_add_device. … … 65 64 }; 66 65 67 /** Hub endpoints, excluding control endpoint. */ 66 /** 67 * hub endpoints, excluding control endpoint 68 */ 68 69 static usb_endpoint_description_t *usb_hub_endpoints[] = { 69 70 &hub_status_change_endpoint_description, 70 NULL ,71 NULL 71 72 }; 72 /** Static usb hub driver information. */ 73 74 /** 75 * static usb hub driver information 76 */ 73 77 static usb_driver_t usb_hub_driver = { 74 78 .name = NAME, … … 81 85 { 82 86 printf(NAME ": HelenOS USB hub driver.\n"); 87 83 88 usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME); 84 89 … … 89 94 * @} 90 95 */ 96
Note:
See TracChangeset
for help on using the changeset viewer.