diff options
Diffstat (limited to 'drivers/usb/host/ehci-pci.c')
-rw-r--r-- | drivers/usb/host/ehci-pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index fe8dc069164e..bc94d7bf072d 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
@@ -368,7 +368,9 @@ static bool usb_is_intel_switchable_ehci(struct pci_dev *pdev) | |||
368 | { | 368 | { |
369 | return pdev->class == PCI_CLASS_SERIAL_USB_EHCI && | 369 | return pdev->class == PCI_CLASS_SERIAL_USB_EHCI && |
370 | pdev->vendor == PCI_VENDOR_ID_INTEL && | 370 | pdev->vendor == PCI_VENDOR_ID_INTEL && |
371 | pdev->device == 0x1E26; | 371 | (pdev->device == 0x1E26 || |
372 | pdev->device == 0x8C2D || | ||
373 | pdev->device == 0x8C26); | ||
372 | } | 374 | } |
373 | 375 | ||
374 | static void ehci_enable_xhci_companion(void) | 376 | static void ehci_enable_xhci_companion(void) |