diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2018-09-18 09:10:49 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-09-18 10:08:38 -0400 |
commit | 59d08d00d43c644ee2011d7ff1807bdd69f31fe0 (patch) | |
tree | fe7fc1c84ba902fd8fd94275801a6a218bf8f4d5 | |
parent | ebe4582281d6e90972f057318a6edea14810ea48 (diff) |
intel_th: pci: Add Ice Lake PCH support
This adds Intel(R) Trace Hub PCI ID for Ice Lake PCH.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/hwtracing/intel_th/pci.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/hwtracing/intel_th/pci.c b/drivers/hwtracing/intel_th/pci.c index c2e55e5d97f6..1cf6290d6435 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -160,6 +160,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { | |||
160 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x18e1), | 160 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x18e1), |
161 | .driver_data = (kernel_ulong_t)&intel_th_2x, | 161 | .driver_data = (kernel_ulong_t)&intel_th_2x, |
162 | }, | 162 | }, |
163 | { | ||
164 | /* Ice Lake PCH */ | ||
165 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x34a6), | ||
166 | .driver_data = (kernel_ulong_t)&intel_th_2x, | ||
167 | }, | ||
163 | { 0 }, | 168 | { 0 }, |
164 | }; | 169 | }; |
165 | 170 | ||