aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-pci.c
diff options
context:
space:
mode:
authorAlek Du <alek.du@intel.com>2009-07-13 05:30:41 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-23 09:46:28 -0400
commit403dbd36739e344d2d25f56ebbe342248487bd48 (patch)
tree1df40f2ae38d5a83ac0a1d04a0fe4d29f4d04002 /drivers/usb/host/ehci-pci.c
parent4d155eb5f55b879e9947c3553b33764746fb15d5 (diff)
USB: EHCI: add need_io_watchdog flag to ehci_hcd
Basically the io watchdog is only useful for those quirk HCDs. For most good ones, it only brings unnecessary wakeups. At least, I know the Intel EHCI HCDs should turn off the flag. Signed-off-by: Alek Du <alek.du@intel.com> Cc: David Brownell <dbrownell@users.sourceforge.net> Cc: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ehci-pci.c')
-rw-r--r--drivers/usb/host/ehci-pci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c
index b5b83c43898..a88ad517ec5 100644
--- a/drivers/usb/host/ehci-pci.c
+++ b/drivers/usb/host/ehci-pci.c
@@ -129,6 +129,9 @@ static int ehci_pci_setup(struct usb_hcd *hcd)
129 return retval; 129 return retval;
130 130
131 switch (pdev->vendor) { 131 switch (pdev->vendor) {
132 case PCI_VENDOR_ID_INTEL:
133 ehci->need_io_watchdog = 0;
134 break;
132 case PCI_VENDOR_ID_TDI: 135 case PCI_VENDOR_ID_TDI:
133 if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) { 136 if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) {
134 hcd->has_tt = 1; 137 hcd->has_tt = 1;