diff options
| author | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2003-02-12 14:00:15 +0000 |
|---|---|---|
| committer | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2003-02-12 14:00:15 +0000 |
| commit | a55a0a5104008e9b05c18ea65d13d4a31ad71c47 (patch) | |
| tree | 65f4f5f32c132900cafd58ab9dd3addcc69fc227 /sys/dev/usb | |
| parent | 5cc6c0ff7db11664edce17d39fe81d1b7326e1ac (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/usb_quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_quirks.c b/sys/dev/usb/usb_quirks.c index 95a94c855538..207c8211bc5e 100644 --- a/sys/dev/usb/usb_quirks.c +++ b/sys/dev/usb/usb_quirks.c @@ -97,7 +97,7 @@ usbd_find_quirk(usb_device_descriptor_t *d) for (t = usb_quirks; t->idVendor != 0; t++) { if (t->idVendor == UGETW(d->idVendor) && t->idProduct == UGETW(d->idProduct) && - t->bcdDevice == UGETW(d->bcdDevice)) + (t->bcdDevice == ANY || t->bcdDevice == UGETW(d->bcdDevice))) break; } #ifdef USB_DEBUG |
