diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2016-06-30 09:10:51 -0400 |
---|---|---|
committer | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2017-03-15 08:55:18 -0400 |
commit | 340837f985c2cb87ca0868d4aa9ce42b0fab3a21 (patch) | |
tree | 18096db9401f71567dcc9e11efbaa3ea1dd8a40b | |
parent | 5118ccd34780f4637a9360be580f41f4c1feab48 (diff) |
intel_th: pci: Add Gemini Lake support
This adds Intel(R) Trace Hub PCI ID for Gemini Lake SOC.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
-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 04bd57b0100a..590cf90dd21a 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -90,6 +90,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { | |||
90 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x19e1), | 90 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x19e1), |
91 | .driver_data = (kernel_ulong_t)0, | 91 | .driver_data = (kernel_ulong_t)0, |
92 | }, | 92 | }, |
93 | { | ||
94 | /* Gemini Lake */ | ||
95 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x318e), | ||
96 | .driver_data = (kernel_ulong_t)0, | ||
97 | }, | ||
93 | { 0 }, | 98 | { 0 }, |
94 | }; | 99 | }; |
95 | 100 | ||