Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/platform/iosf_mbi: Add Intel Tangier PCI id

Intel Tangier has an IOSF Mailbox with PCI ID 8086:1170.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: David E . Box <david.e.box@linux.intel.com>
Link: http://lkml.kernel.org/r/1436366709-17683-6-git-send-email-andriy.shevchenko@linux.intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Andy Shevchenko and committed by
Thomas Gleixner
f33d159e 7e1ff15b

+2
+2
arch/x86/platform/intel/iosf_mbi.c
··· 30 30 #define PCI_DEVICE_ID_BAYTRAIL 0x0F00 31 31 #define PCI_DEVICE_ID_BRASWELL 0x2280 32 32 #define PCI_DEVICE_ID_QUARK_X1000 0x0958 33 + #define PCI_DEVICE_ID_TANGIER 0x1170 33 34 34 35 static struct pci_dev *mbi_pdev; 35 36 static DEFINE_SPINLOCK(iosf_mbi_lock); ··· 292 291 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_BAYTRAIL) }, 293 292 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_BRASWELL) }, 294 293 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_QUARK_X1000) }, 294 + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_TANGIER) }, 295 295 { 0, }, 296 296 }; 297 297 MODULE_DEVICE_TABLE(pci, iosf_mbi_pci_ids);