diff options
author | Jarkko Nikula <jarkko.nikula@linux.intel.com> | 2018-12-19 02:01:58 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2019-01-03 14:02:32 -0500 |
commit | 5cda2d86de3ef7c926e441481c8e46ae3d1943cf (patch) | |
tree | a3ed61a17f5b0920031a61fb0c5684d041e23425 | |
parent | d6f0453391e042ba12f9571e6ded76c9e414d245 (diff) |
i2c: ismt: Add support for Intel Cedar Fork
Add PCI ID for the Intel Cedar Fork iSMT SMBus controller.
Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
[wsa: kept sorting]
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r-- | drivers/i2c/busses/i2c-ismt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-ismt.c b/drivers/i2c/busses/i2c-ismt.c index 0d1c3ec8cb40..02d23edb2fb1 100644 --- a/drivers/i2c/busses/i2c-ismt.c +++ b/drivers/i2c/busses/i2c-ismt.c | |||
@@ -75,6 +75,7 @@ | |||
75 | /* PCI DIDs for the Intel SMBus Message Transport (SMT) Devices */ | 75 | /* PCI DIDs for the Intel SMBus Message Transport (SMT) Devices */ |
76 | #define PCI_DEVICE_ID_INTEL_S1200_SMT0 0x0c59 | 76 | #define PCI_DEVICE_ID_INTEL_S1200_SMT0 0x0c59 |
77 | #define PCI_DEVICE_ID_INTEL_S1200_SMT1 0x0c5a | 77 | #define PCI_DEVICE_ID_INTEL_S1200_SMT1 0x0c5a |
78 | #define PCI_DEVICE_ID_INTEL_CDF_SMT 0x18ac | ||
78 | #define PCI_DEVICE_ID_INTEL_DNV_SMT 0x19ac | 79 | #define PCI_DEVICE_ID_INTEL_DNV_SMT 0x19ac |
79 | #define PCI_DEVICE_ID_INTEL_AVOTON_SMT 0x1f15 | 80 | #define PCI_DEVICE_ID_INTEL_AVOTON_SMT 0x1f15 |
80 | 81 | ||
@@ -181,6 +182,7 @@ struct ismt_priv { | |||
181 | static const struct pci_device_id ismt_ids[] = { | 182 | static const struct pci_device_id ismt_ids[] = { |
182 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT0) }, | 183 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT0) }, |
183 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT1) }, | 184 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT1) }, |
185 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_CDF_SMT) }, | ||
184 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DNV_SMT) }, | 186 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DNV_SMT) }, |
185 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMT) }, | 187 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMT) }, |
186 | { 0, } | 188 | { 0, } |