summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-10-29 13:51:31 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-10-29 13:51:31 +0000
commitbddc693e8d9cb3c66c2ef98da0b4de3c51aef94b (patch)
treefef50c20debb1b38d128ee95f6f62c1e6b26f864 /src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c
parent36a2268d17f119e032b3f9b49ff5ef6989812504 (diff)
downloadcoreboot-bddc693e8d9cb3c66c2ef98da0b4de3c51aef94b.tar.xz
i945/ICH7: Use #defines from pci_ids.h (trivial).
Build-tested with the kontron/986lcd-m target. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3705 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c')
-rw-r--r--src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c b/src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c
index 3d581abb59..cc2698a5c5 100644
--- a/src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c
+++ b/src/southbridge/intel/i82801gx/i82801gx_usb_ehci.c
@@ -76,9 +76,9 @@ static struct device_operations usb_ehci_ops = {
.ops_pci = &lops_pci,
};
-/* 82801Gx */
-static const struct pci_driver i82801ex_usb_ehci __pci_driver = {
+/* 82801GB/GR/GDH/GBM/GHM/GU (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH/ICH7-U) */
+static const struct pci_driver i82801gx_usb_ehci __pci_driver = {
.ops = &usb_ehci_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x27cc,
+ .device = PCI_DEVICE_ID_INTEL_82801GB_EHCI,
};