diff options
| -rw-r--r-- | drivers/edac/i7core_edac.c | 7 | ||||
| -rw-r--r-- | include/linux/pci_ids.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c index cd51709c4d89..82acfbd01779 100644 --- a/drivers/edac/i7core_edac.c +++ b/drivers/edac/i7core_edac.c | |||
| @@ -1213,10 +1213,15 @@ int i7core_get_onedevice(struct pci_dev **prev, int devno, | |||
| 1213 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, | 1213 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1214 | PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev); | 1214 | PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev); |
| 1215 | 1215 | ||
| 1216 | if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev) | 1216 | if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev) { |
| 1217 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, | 1217 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1218 | PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT, | 1218 | PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT, |
| 1219 | *prev); | 1219 | *prev); |
| 1220 | if (!pdev) | ||
| 1221 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, | ||
| 1222 | PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2, | ||
| 1223 | *prev); | ||
| 1224 | } | ||
| 1220 | 1225 | ||
| 1221 | if (!pdev) { | 1226 | if (!pdev) { |
| 1222 | if (*prev) { | 1227 | if (*prev) { |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index e67cb20b8401..46d76e985bac 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -2552,6 +2552,7 @@ | |||
| 2552 | #define PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT 0x2c40 | 2552 | #define PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT 0x2c40 |
| 2553 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE 0x2c50 | 2553 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE 0x2c50 |
| 2554 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT 0x2c51 | 2554 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT 0x2c51 |
| 2555 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2 0x2c70 | ||
| 2555 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_SAD 0x2c81 | 2556 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_SAD 0x2c81 |
| 2556 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0 0x2c90 | 2557 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0 0x2c90 |
| 2557 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_PHY0 0x2c91 | 2558 | #define PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_PHY0 0x2c91 |
