aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i3100/i3100_ehci.c
diff options
context:
space:
mode:
authorEd Swierk <eswierk@arastra.com>2008-08-25 14:45:00 +0000
committerEd Swierk <eswierk@arastra.com>2008-08-25 14:45:00 +0000
commit6c66c957879e6569770cf420b8b916ed8414747e (patch)
tree03bc80723d217a30fa6fd547161f4508e3e8c9b3 /src/southbridge/intel/i3100/i3100_ehci.c
parent19963137568738850f786abd030d81f2f0ec5bba (diff)
This patch modifies the Intel 3100 southbridge code to recognize the
integrated LPC, SMBus, USB and SATA devices of the Intel EP80579 Integrated Processor. Signed-off-by: Ed Swierk <eswierk@arastra.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3535 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/i3100/i3100_ehci.c')
-rw-r--r--src/southbridge/intel/i3100/i3100_ehci.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/southbridge/intel/i3100/i3100_ehci.c b/src/southbridge/intel/i3100/i3100_ehci.c
index fc36791dc6..0c391c2647 100644
--- a/src/southbridge/intel/i3100/i3100_ehci.c
+++ b/src/southbridge/intel/i3100/i3100_ehci.c
@@ -60,3 +60,9 @@ static struct pci_driver ehci_driver __pci_driver = {
.vendor = PCI_VENDOR_ID_INTEL,
.device = PCI_DEVICE_ID_INTEL_3100_EHCI,
};
+
+static struct pci_driver ehci_driver_ep80579 __pci_driver = {
+ .ops = &ehci_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = PCI_DEVICE_ID_INTEL_EP80579_EHCI,
+};