diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2016-06-28 11:55:23 -0400 |
---|---|---|
committer | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2016-07-14 06:16:56 -0400 |
commit | 7a1a47ce35821b40f5b2ce46379ba14393bc3873 (patch) | |
tree | 9f46033c2494b452e2672a19b842eeb07e16d0a7 | |
parent | a36aa80f3cb2540fb1dbad6240852de4365a2e82 (diff) |
intel_th: pci: Add Kaby Lake PCH-H support
This adds Intel(R) Trace Hub PCI ID for Kaby Lake PCH-H.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: <stable@vger.kernel.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 5e25c7eb31d3..0bba3842336e 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -80,6 +80,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { | |||
80 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x1a8e), | 80 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x1a8e), |
81 | .driver_data = (kernel_ulong_t)0, | 81 | .driver_data = (kernel_ulong_t)0, |
82 | }, | 82 | }, |
83 | { | ||
84 | /* Kaby Lake PCH-H */ | ||
85 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa2a6), | ||
86 | .driver_data = (kernel_ulong_t)0, | ||
87 | }, | ||
83 | { 0 }, | 88 | { 0 }, |
84 | }; | 89 | }; |
85 | 90 | ||