diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-02-16 15:22:44 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-03-09 19:58:57 +0000 |
commit | 1ae94c903d115b615b1d6301bd91bffcb0408a90 (patch) | |
tree | 9f3d8c79f52550227be1c14db833c41fa46aa5ec /src/include/ipxe/usb.h | |
parent | 02bf4f16f3e8b4833990187de7fdf72b87c2b6a8 (diff) | |
download | ipxe-1ae94c903d115b615b1d6301bd91bffcb0408a90.tar.gz |
[dm96xx] Add driver for Davicom DM96xx USB Ethernet NICs
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/usb.h')
-rw-r--r-- | src/include/ipxe/usb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/ipxe/usb.h b/src/include/ipxe/usb.h index 5ea9fa4ae..59661f701 100644 --- a/src/include/ipxe/usb.h +++ b/src/include/ipxe/usb.h @@ -78,6 +78,9 @@ struct usb_setup_packet { /** Class-specific request type */ #define USB_TYPE_CLASS ( 1 << 5 ) +/** Vendor-specific request type */ +#define USB_TYPE_VENDOR ( 2 << 5 ) + /** Request recipient is the device */ #define USB_RECIP_DEVICE ( 0 << 0 ) |