aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid E. Box <david.e.box@linux.intel.com>2014-09-18 01:13:49 -0400
committerIngo Molnar <mingo@kernel.org>2014-09-19 07:08:42 -0400
commit849f5d894383d25c49132437aa289c9a9c98d5df (patch)
treee18dc43ee95cee2b9cb36424af706533cce0980e
parent9575a6a23a8081bc4c9d47d001621e2af0957c02 (diff)
x86/platform/intel/iosf: Add Braswell PCI ID
Add Braswell PCI ID to list of supported ID's for the IOSF driver. Signed-off-by: David E. Box <david.e.box@linux.intel.com> Link: http://lkml.kernel.org/r/1411017231-20807-2-git-send-email-david.e.box@linux.intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--arch/x86/kernel/iosf_mbi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/iosf_mbi.c b/arch/x86/kernel/iosf_mbi.c
index 0a2faa3892cb..e01f7414b5e7 100644
--- a/arch/x86/kernel/iosf_mbi.c
+++ b/arch/x86/kernel/iosf_mbi.c
@@ -28,6 +28,7 @@
28#include <asm/iosf_mbi.h> 28#include <asm/iosf_mbi.h>
29 29
30#define PCI_DEVICE_ID_BAYTRAIL 0x0F00 30#define PCI_DEVICE_ID_BAYTRAIL 0x0F00
31#define PCI_DEVICE_ID_BRASWELL 0x2280
31#define PCI_DEVICE_ID_QUARK_X1000 0x0958 32#define PCI_DEVICE_ID_QUARK_X1000 0x0958
32 33
33static DEFINE_SPINLOCK(iosf_mbi_lock); 34static DEFINE_SPINLOCK(iosf_mbi_lock);
@@ -275,6 +276,7 @@ static int iosf_mbi_probe(struct pci_dev *pdev,
275 276
276static const struct pci_device_id iosf_mbi_pci_ids[] = { 277static const struct pci_device_id iosf_mbi_pci_ids[] = {
277 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_BAYTRAIL) }, 278 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_BAYTRAIL) },
279 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_BRASWELL) },
278 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_QUARK_X1000) }, 280 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_QUARK_X1000) },
279 { 0, }, 281 { 0, },
280}; 282};