diff options
author | Huang Rui <ray.huang@amd.com> | 2013-11-13 09:35:13 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-08 20:42:45 -0500 |
commit | f625099f1a504742aef4c6ab20ba0ca981847e3c (patch) | |
tree | 9ccaa08b4a2dfce08aba56916f0413f1c27e715c /drivers | |
parent | 875bc23ac041519b24bd2c1faf71822e4b3e4322 (diff) |
usb: usbtest: update bos test coverage to usb 2.1 device
The commit "usb: usbtest: support bos descriptor test for usb 3.0"
introduced a test for bos descriptor. And USB 2.1 device also can be
checked. So this patch extends the test coverage to support USB 2.1 device.
Reported-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Huang Rui <ray.huang@amd.com>
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/misc/usbtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c index 0b5c3b157530..bff058ea222e 100644 --- a/drivers/usb/misc/usbtest.c +++ b/drivers/usb/misc/usbtest.c | |||
@@ -763,7 +763,7 @@ static int ch9_postconfig(struct usbtest_dev *dev) | |||
763 | * there's always [9.4.3] a bos device descriptor [9.6.2] in USB | 763 | * there's always [9.4.3] a bos device descriptor [9.6.2] in USB |
764 | * 3.0 spec | 764 | * 3.0 spec |
765 | */ | 765 | */ |
766 | if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0300) { | 766 | if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0210) { |
767 | struct usb_bos_descriptor *bos = NULL; | 767 | struct usb_bos_descriptor *bos = NULL; |
768 | struct usb_dev_cap_header *header = NULL; | 768 | struct usb_dev_cap_header *header = NULL; |
769 | unsigned total, num, length; | 769 | unsigned total, num, length; |