diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2017-09-19 11:47:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-09-22 04:28:00 -0400 |
commit | 920ce7c33db25cf4acb4ade3ae8c93bd23dfd730 (patch) | |
tree | 97a9c8aba6d9d712acb9c77309976eba3f7d3826 | |
parent | fd085bb1766d6a598f53af2308374a546a49775a (diff) |
intel_th: pci: Add Cedar Fork PCH support
This adds Intel(R) Trace Hub PCI ID for Cedar Fork PCH.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: stable@vger.kernel.org
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 bc9cebc30526..00ee60d9789e 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -158,6 +158,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { | |||
158 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9da6), | 158 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9da6), |
159 | .driver_data = (kernel_ulong_t)&intel_th_2x, | 159 | .driver_data = (kernel_ulong_t)&intel_th_2x, |
160 | }, | 160 | }, |
161 | { | ||
162 | /* Cedar Fork PCH */ | ||
163 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x18e1), | ||
164 | .driver_data = (kernel_ulong_t)&intel_th_2x, | ||
165 | }, | ||
161 | { 0 }, | 166 | { 0 }, |
162 | }; | 167 | }; |
163 | 168 | ||