aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/bd82x6x/lpc.c
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2012-04-07 02:11:36 +0000
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-05-01 20:03:31 +0200
commit459b7777fe871c5c9bd6636b1b13efc784129e31 (patch)
tree17aee27897cd9ecee5ee16fae6f0031793d1bf9a /src/southbridge/intel/bd82x6x/lpc.c
parent8049fc91ded9d780b9f6d5c40bc43ad3242b7a3b (diff)
add new LPC controller device ID value
This adds the PCI device id of the LPC controller identifying the QPRJ/QS stepping of the Panther Point southbridge. Change-Id: Idcaa7dbd30224e3690ea469c6cb74f75de287631 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: http://review.coreboot.org/968 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/southbridge/intel/bd82x6x/lpc.c')
-rw-r--r--src/southbridge/intel/bd82x6x/lpc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/southbridge/intel/bd82x6x/lpc.c b/src/southbridge/intel/bd82x6x/lpc.c
index 1ecaf8fca9..9a3dc99b6a 100644
--- a/src/southbridge/intel/bd82x6x/lpc.c
+++ b/src/southbridge/intel/bd82x6x/lpc.c
@@ -676,3 +676,8 @@ static const struct pci_driver c216_lpc __pci_driver = {
.vendor = PCI_VENDOR_ID_INTEL,
.device = 0x1e55,
};
+static const struct pci_driver hm75_lpc __pci_driver = {
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = 0x1e5d,
+};