diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-01-13 19:14:51 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-01-13 19:14:51 +0000 |
commit | 639e7e5f770210b0c7b00d2f783064c9e8f4c332 (patch) | |
tree | 168b8648771233b983c2c66a4947cadfe5e0e394 /sys/dev/usb2/controller/uhci2_pci.c | |
parent | 5bd9063145d72d00422860a2b79593b7f2f56412 (diff) | |
download | FreeBSD-src-639e7e5f770210b0c7b00d2f783064c9e8f4c332.zip FreeBSD-src-639e7e5f770210b0c7b00d2f783064c9e8f4c332.tar.gz |
Sync to p4 156093
- Add quirks for Parallels
These snuck in as part of a perforce IFC.
Diffstat (limited to 'sys/dev/usb2/controller/uhci2_pci.c')
-rw-r--r-- | sys/dev/usb2/controller/uhci2_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/usb2/controller/uhci2_pci.c b/sys/dev/usb2/controller/uhci2_pci.c index 97a28a8..70cbd3a 100644 --- a/sys/dev/usb2/controller/uhci2_pci.c +++ b/sys/dev/usb2/controller/uhci2_pci.c @@ -320,7 +320,9 @@ uhci_pci_attach(device_t self) sc->sc_bus.usbrev = USB_REV_1_0; break; default: - sc->sc_bus.usbrev = USB_REV_UNKNOWN; + /* Quirk for Parallels Desktop 4.0 */ + device_printf(self, "USB revision is unknown. Assuming v1.1.\n"); + sc->sc_bus.usbrev = USB_REV_1_1; break; } |