diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-16 23:08:05 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-22 10:50:55 +0100 |
commit | b67eaee325a032f508675c49ffd2fae8205e73c3 (patch) | |
tree | 0c11fbd5e9aad2fe849743de3014261ca3bb06f7 /src/northbridge/intel | |
parent | fc1c1b572f3523950cdf5cbf0c2967365700cfc3 (diff) |
i945: Add 27ac to northbridge IDs.
Change-Id: Ie2edf0738d0f27efa696b9f6c17600a97e323117
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7484
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/northbridge/intel')
-rw-r--r-- | src/northbridge/intel/i945/northbridge.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/northbridge/intel/i945/northbridge.c b/src/northbridge/intel/i945/northbridge.c index 91c5c82e39..1aaeb3b902 100644 --- a/src/northbridge/intel/i945/northbridge.c +++ b/src/northbridge/intel/i945/northbridge.c @@ -268,10 +268,13 @@ static struct device_operations mc_ops = { .ops_pci = &intel_pci_ops, }; +static const unsigned short pci_device_ids[] = { 0x27a0, 0x27ac, + 0 }; + static const struct pci_driver mc_driver __pci_driver = { .ops = &mc_ops, .vendor = PCI_VENDOR_ID_INTEL, - .device = 0x27a0, + .devices = pci_device_ids, }; static void cpu_bus_init(device_t dev) |