From 349e08535a7666cabe52ebc331e3bce5468b786b Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Sun, 9 Apr 2017 20:48:37 +0200 Subject: sb/intel/i82801jx: Add correct PCI ids and change names Change-Id: Ic9226098dafa2465aa5fccc72c442de2b94e44c7 Signed-off-by: Arthur Heymans Reviewed-on: https://review.coreboot.org/19249 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/southbridge/intel/i82801jx/thermal.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/southbridge/intel/i82801jx/thermal.c') diff --git a/src/southbridge/intel/i82801jx/thermal.c b/src/southbridge/intel/i82801jx/thermal.c index 12cf89891f..a5d5bed309 100644 --- a/src/southbridge/intel/i82801jx/thermal.c +++ b/src/southbridge/intel/i82801jx/thermal.c @@ -20,7 +20,7 @@ #include #include -#include "i82801ix.h" +#include "i82801jx.h" static void thermal_init(struct device *dev) { @@ -74,8 +74,14 @@ static struct device_operations device_ops = { .ops_pci = &thermal_pci_ops, }; -static const struct pci_driver ich9_thermal __pci_driver = { +static const unsigned short pci_device_ids[] = { + 0x3a32, + 0x3a62, + 0 +}; + +static const struct pci_driver ich10_thermal __pci_driver = { .ops = &device_ops, .vendor = PCI_VENDOR_ID_INTEL, - .device = 0x2932, + .devices = pci_device_ids, }; -- cgit v1.2.3