From 464df90d5b3d68c7415d1d04fd36263ac20ad265 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Thu, 13 Jun 2013 21:51:27 -0500 Subject: [PATCH] lynxpoint: update EHCI pci ids The PCI ids for the EHCI devices were not update to reflect LynxPoint's PCI ids. BUG=chrome-os-partner:20174 BRANCH=None TEST=Manual: looked for "EHCI: Setting up controller.. " in console. Change-Id: I5a2e1d746700d45341817b065bc41dc83f508063 Signed-off-by: Aaron Durbin Reviewed-on: https://gerrit.chromium.org/gerrit/58622 Reviewed-by: Duncan Laurie --- src/southbridge/intel/lynxpoint/usb_ehci.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/southbridge/intel/lynxpoint/usb_ehci.c b/src/southbridge/intel/lynxpoint/usb_ehci.c index 48200a646a..eb86099593 100644 --- a/src/southbridge/intel/lynxpoint/usb_ehci.c +++ b/src/southbridge/intel/lynxpoint/usb_ehci.c @@ -115,8 +115,7 @@ static struct device_operations usb_ehci_ops = { .ops_pci = &lops_pci, }; -static const unsigned short pci_device_ids[] = { 0x1c26, 0x1c2d, 0x1e26, 0x1e2d, - 0 }; +static const unsigned short pci_device_ids[] = { 0x9c26, 0x8c26, 0x8c2d, 0 }; static const struct pci_driver pch_usb_ehci __pci_driver = { .ops = &usb_ehci_ops,