summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801gx/i82801gx_lpc.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_lpc.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_lpc.c')
-rw-r--r--src/southbridge/intel/i82801gx/i82801gx_lpc.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/southbridge/intel/i82801gx/i82801gx_lpc.c b/src/southbridge/intel/i82801gx/i82801gx_lpc.c
index e796951a62..c7d7e5d066 100644
--- a/src/southbridge/intel/i82801gx/i82801gx_lpc.c
+++ b/src/southbridge/intel/i82801gx/i82801gx_lpc.c
@@ -338,24 +338,23 @@ static struct device_operations device_ops = {
.ops_pci = &pci_ops,
};
-/* ICH7 / ICH7R */
-static const struct pci_driver ich7_ich7r_lpc __pci_driver = {
+/* 82801GB/GR/GDH (ICH7/ICH7R/ICH7DH) */
+static const struct pci_driver ich7_ich7r_ich7dh_lpc __pci_driver = {
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x27b8,
+ .device = PCI_DEVICE_ID_INTEL_82801GB_LPC,
};
-/* ICH7M / ICH7U */
+/* 82801GBM/GU (ICH7-M/ICH7-U) */
static const struct pci_driver ich7m_ich7u_lpc __pci_driver = {
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x27b9,
+ .device = PCI_DEVICE_ID_INTEL_82801GBM_LPC,
};
-/* ICH7M DH */
+/* 82801GHM (ICH7-M DH) */
static const struct pci_driver ich7m_dh_lpc __pci_driver = {
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x27bd,
+ .device = PCI_DEVICE_ID_INTEL_82801GHM_LPC,
};
-