Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1269
-gerrit commit 6a757558cd940fa2ed98b7ede00296f6dff6a6c8 Author: Walter Murphy <[email protected]> Date: Mon Apr 23 11:08:03 2012 -0700 SandyBridge: Add another PCI device ID for northbridge Change-Id: I153579561f7eed6d4befd74ff39e1a5e778d0e46 Signed-off-by: Walter Murphy <[email protected]> --- src/northbridge/intel/sandybridge/northbridge.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/northbridge/intel/sandybridge/northbridge.c b/src/northbridge/intel/sandybridge/northbridge.c index b261c9d..756aacf 100644 --- a/src/northbridge/intel/sandybridge/northbridge.c +++ b/src/northbridge/intel/sandybridge/northbridge.c @@ -441,6 +441,12 @@ static struct device_operations mc_ops = { .ops_pci = &intel_pci_ops, }; +static const struct pci_driver mc_driver_0100 __pci_driver = { + .ops = &mc_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .device = 0x0100, +}; + static const struct pci_driver mc_driver __pci_driver = { .ops = &mc_ops, .vendor = PCI_VENDOR_ID_INTEL, -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

