Changes in uspace/drv/bus/usb/usbhub/main.c [e98e5fc:920d0fc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/main.c
re98e5fc r920d0fc 36 36 #include <async.h> 37 37 #include <stdio.h> 38 #include <io/logctl.h>39 38 40 39 #include <usb/dev/driver.h> … … 44 43 #include "usbhub.h" 45 44 45 /** Hub status-change endpoint description. 46 * 47 * For more information see section 11.15.1 of USB 1.1 specification. 48 */ 49 static const usb_endpoint_description_t hub_status_change_endpoint_description = 50 { 51 .transfer_type = USB_TRANSFER_INTERRUPT, 52 .direction = USB_DIRECTION_IN, 53 .interface_class = USB_CLASS_HUB, 54 .interface_subclass = 0, 55 .interface_protocol = 0, 56 .flags = 0 57 }; 46 58 47 59 /** USB hub driver operations. */ … … 68 80 printf(NAME ": HelenOS USB hub driver.\n"); 69 81 log_init(NAME); 70 logctl_set_log_level(NAME, LVL_NOTE); 82 71 83 return usb_driver_main(&usb_hub_driver); 72 84 }
Note:
See TracChangeset
for help on using the changeset viewer.