aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorRaphael Assenat <raph@8d.com>2007-04-17 16:09:18 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-04-27 16:28:43 -0400
commit33f73e56198457c38789e08c47d2af47174c1d8f (patch)
tree83220d37100bc8e02705caa300d47d80d8a1dbf1 /drivers/usb
parent147c5a17338fc72a89452f0a6c14ae6fcf853919 (diff)
USB: quirk for broken suspend of IT8152F/G
Here's a patch which adds my device to the list. This patch enables the broken suspend quirk for the PCI OHCI controller present in the IT8152F/G RISC-to-PCI Companion Chip. Signed-off-by: Raphael Assenat <raph@8d.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/ohci-pci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-pci.c b/drivers/usb/host/ohci-pci.c
index 321f35150b81..79705609fd0c 100644
--- a/drivers/usb/host/ohci-pci.c
+++ b/drivers/usb/host/ohci-pci.c
@@ -141,6 +141,10 @@ static const struct pci_device_id ohci_pci_quirks[] = {
141 .subdevice = 0x0004, 141 .subdevice = 0x0004,
142 .driver_data = (unsigned long) broken_suspend, 142 .driver_data = (unsigned long) broken_suspend,
143 }, 143 },
144 {
145 PCI_DEVICE(PCI_VENDOR_ID_ITE, 0x8152),
146 .driver_data = (unsigned long) broken_suspend,
147 },
144 /* FIXME for some of the early AMD 760 southbridges, OHCI 148 /* FIXME for some of the early AMD 760 southbridges, OHCI
145 * won't work at all. blacklist them. 149 * won't work at all. blacklist them.
146 */ 150 */