diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-10-31 18:41:09 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-10-31 18:41:09 +0000 |
commit | 5d7a1c844e56bc9dd101c8a900bf3284b633d04b (patch) | |
tree | c5619f02c0e247ad482d20810f0b7ba6e9b34cd3 /src/northbridge/intel | |
parent | 50f37b0f9bc29e7522acabb4bb7c881423f3c24e (diff) | |
download | coreboot-5d7a1c844e56bc9dd101c8a900bf3284b633d04b.tar.xz |
Revert i945/ICH7 PCI IDs to be hard-coded numbers instead of #defines.
Build-tested on kontron_986lcd_m.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3715 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/intel')
-rw-r--r-- | src/northbridge/intel/i945/northbridge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/i945/northbridge.c b/src/northbridge/intel/i945/northbridge.c index ee62149c52..6aa9f2d545 100644 --- a/src/northbridge/intel/i945/northbridge.c +++ b/src/northbridge/intel/i945/northbridge.c @@ -247,7 +247,7 @@ static struct device_operations mc_ops = { static const struct pci_driver mc_driver __pci_driver = { .ops = &mc_ops, .vendor = PCI_VENDOR_ID_INTEL, - .device = PCI_DEVICE_ID_INTEL_945_HOST_BRIDGE, + .device = 0x27a0, }; static void cpu_bus_init(device_t dev) |