diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2015-12-22 10:25:23 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-08 01:43:17 -0500 |
commit | 3f040887a8be0c28a099a9106bc29443d4f79a7e (patch) | |
tree | f578cc7c6a143616c3ce3dec309fcc8751038dfa /drivers/hwtracing/intel_th | |
parent | 6396b912f1e97a0e9566c0d801923a0d0eb31749 (diff) |
intel_th: pci: Add Broxton SOC support
This adds Intel(R) Trace Hub PCI ID for Broxton SOC.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwtracing/intel_th')
-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 b5760730e11b..09017073d7a4 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -72,6 +72,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { | |||
72 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x5a8e), | 72 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x5a8e), |
73 | .driver_data = (kernel_ulong_t)0, | 73 | .driver_data = (kernel_ulong_t)0, |
74 | }, | 74 | }, |
75 | { | ||
76 | /* Broxton */ | ||
77 | PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0a80), | ||
78 | .driver_data = (kernel_ulong_t)0, | ||
79 | }, | ||
75 | { 0 }, | 80 | { 0 }, |
76 | }; | 81 | }; |
77 | 82 | ||