diff options
| -rw-r--r-- | drivers/usb/host/pci-quirks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c index caf87428ca43..ac53a662a6a3 100644 --- a/drivers/usb/host/pci-quirks.c +++ b/drivers/usb/host/pci-quirks.c | |||
| @@ -867,6 +867,12 @@ hc_init: | |||
| 867 | 867 | ||
| 868 | static void __devinit quirk_usb_early_handoff(struct pci_dev *pdev) | 868 | static void __devinit quirk_usb_early_handoff(struct pci_dev *pdev) |
| 869 | { | 869 | { |
| 870 | /* Skip Netlogic mips SoC's internal PCI USB controller. | ||
| 871 | * This device does not need/support EHCI/OHCI handoff | ||
| 872 | */ | ||
| 873 | if (pdev->vendor == 0x184e) /* vendor Netlogic */ | ||
| 874 | return; | ||
| 875 | |||
| 870 | if (pdev->class == PCI_CLASS_SERIAL_USB_UHCI) | 876 | if (pdev->class == PCI_CLASS_SERIAL_USB_UHCI) |
| 871 | quirk_usb_handoff_uhci(pdev); | 877 | quirk_usb_handoff_uhci(pdev); |
| 872 | else if (pdev->class == PCI_CLASS_SERIAL_USB_OHCI) | 878 | else if (pdev->class == PCI_CLASS_SERIAL_USB_OHCI) |
