diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2019-10-28 03:06:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-11-04 09:01:25 -0500 |
commit | 9d55499d8da49e9261e95a490f3fda41d955f505 (patch) | |
tree | 4d6404d7ed91a41c3610cb06df8231ee400ca591 | |
parent | 3adbb5718dd5264666ddbc2b9b43799d292e9cb6 (diff) |
intel_th: pci: Add Jasper Lake PCH support
This adds support for Intel TH on Jasper Lake PCH.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20191028070651.9770-8-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 4088e1865b07..03ca5b1bef9f 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -214,6 +214,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { | |||
214 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa0a6), | 214 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa0a6), |
215 | .driver_data = (kernel_ulong_t)&intel_th_2x, | 215 | .driver_data = (kernel_ulong_t)&intel_th_2x, |
216 | }, | 216 | }, |
217 | { | ||
218 | /* Jasper Lake PCH */ | ||
219 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4da6), | ||
220 | .driver_data = (kernel_ulong_t)&intel_th_2x, | ||
221 | }, | ||
217 | { 0 }, | 222 | { 0 }, |
218 | }; | 223 | }; |
219 | 224 | ||