James has uploaded this change for review.

View Change

sb/intel/bd82x6x: Add missing ID for PCI bridge

The PCI device ID 0x244e for the "Intel Corporation 82801 PCI Bridge"
was missing.

Change-Id: I22cdbcf518d86af7b93de7731d175088a81bbc1f
Signed-off-by: James Ye <jye836@gmail.com>
---
M src/southbridge/intel/bd82x6x/pci.c
1 file changed, 9 insertions(+), 3 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/15/41015/1
diff --git a/src/southbridge/intel/bd82x6x/pci.c b/src/southbridge/intel/bd82x6x/pci.c
index 459ed46..757bdeb 100644
--- a/src/southbridge/intel/bd82x6x/pci.c
+++ b/src/southbridge/intel/bd82x6x/pci.c
@@ -58,8 +58,14 @@
.ops_pci = &pci_ops,
};

+static const unsigned short pci_device_ids[] = {
+ 0x244e, /* Desktop */
+ 0x2448, /* Mobile */
+ 0
+};
+
static const struct pci_driver pch_pci __pci_driver = {
- .ops = &device_ops,
- .vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x2448,
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .devices = pci_device_ids,
};

To view, visit change 41015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I22cdbcf518d86af7b93de7731d175088a81bbc1f
Gerrit-Change-Number: 41015
Gerrit-PatchSet: 1
Gerrit-Owner: James <jye836@gmail.com>
Gerrit-MessageType: newchange