diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-06-23 07:54:03 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-06-23 07:54:03 +0000 |
commit | d0f827f1f21ae29da0f452fc6eade31c47818b46 (patch) | |
tree | 9c9e570fea963c0c841585afc37116eb5e50f9e0 /sys/dev/usb/template/usb_template_msc.c | |
parent | d00135573a2cb956464d92b084d1337dd4be1910 (diff) | |
download | FreeBSD-src-d0f827f1f21ae29da0f452fc6eade31c47818b46.zip FreeBSD-src-d0f827f1f21ae29da0f452fc6eade31c47818b46.tar.gz |
- Add more USB templates for various USB device classes
- Add basic template support for USB 3.0
- Export definition of template sysctl numbers through usb_ioctl.h
MFC after: 7 days
Diffstat (limited to 'sys/dev/usb/template/usb_template_msc.c')
-rw-r--r-- | sys/dev/usb/template/usb_template_msc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/template/usb_template_msc.c b/sys/dev/usb/template/usb_template_msc.c index 598c9fd..5c05ffe 100644 --- a/sys/dev/usb/template/usb_template_msc.c +++ b/sys/dev/usb/template/usb_template_msc.c @@ -173,8 +173,8 @@ static const struct usb_temp_config_desc *msc_configs[] = { const struct usb_temp_device_desc usb_template_msc = { .getStringDesc = &msc_get_string_desc, .ppConfigDesc = msc_configs, - .idVendor = 0x0001, - .idProduct = 0x0001, + .idVendor = USB_TEMPLATE_VENDOR, + .idProduct = 0x0012, .bcdDevice = 0x0100, .bDeviceClass = UDCLASS_COMM, .bDeviceSubClass = 0, |