* Minor cleanup

* Fixed wrong wording in comment

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19915 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2007-01-23 16:44:37 +00:00
parent a0398f333c
commit 3a630146d2
2 changed files with 4 additions and 4 deletions

View File

@ -94,7 +94,7 @@ struct usb_module_info {
* A value of 0 can be used as a wildcard for all fields. * A value of 0 can be used as a wildcard for all fields.
* *
* Would you like to be notified about all added hubs (class 0x09) you * Would you like to be notified about all added hubs (class 0x09) you
* would a support descriptor like this to register_driver: * would use a support descriptor like this for register_driver:
* usb_support_descriptor hub_devs = { 9, 0, 0, 0, 0 }; * usb_support_descriptor hub_devs = { 9, 0, 0, 0, 0 };
* *
* If you intend to support just any device, or you at least want to be * If you intend to support just any device, or you at least want to be

View File

@ -62,9 +62,9 @@ extern "C" {
#define USB_ENDPOINT_ATTR_CONTROL 0x00 #define USB_ENDPOINT_ATTR_CONTROL 0x00
#define USB_ENDPOINT_ATTR_ISOCHRONOUS 0x01 #define USB_ENDPOINT_ATTR_ISOCHRONOUS 0x01
#define USB_ENDPOINT_ATTR_BULK 0x02 #define USB_ENDPOINT_ATTR_BULK 0x02
#define USB_ENDPOINT_ATTR_INTERRUPT 0x03 #define USB_ENDPOINT_ATTR_INTERRUPT 0x03
#define USB_ENDPOINT_ATTR_MASK 0x03 #define USB_ENDPOINT_ATTR_MASK 0x03
#define USB_ENDPOINT_ADDR_DIR_IN 0x80 #define USB_ENDPOINT_ADDR_DIR_IN 0x80
#define USB_ENDPOINT_ADDR_DIR_OUT 0x00 #define USB_ENDPOINT_ADDR_DIR_OUT 0x00