diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2017-09-21 16:19:45 +0300 |
---|---|---|
committer | Cyrille Pitchen <cyrille.pitchen@wedev4u.fr> | 2017-10-10 18:55:54 +0200 |
commit | d92b0f18a2039ff736b4296ad3cf3d505512051e (patch) | |
tree | ad6589bbdeeff9f8d41ca0cb982b5a23c932b087 /drivers/mtd/spi-nor/intel-spi-pci.c | |
parent | 5a0682835ca270c6a4f8a1bdaa59e710f6968f62 (diff) | |
download | linux-d92b0f18a2039ff736b4296ad3cf3d505512051e.tar.bz2 |
mtd: spi-nor: intel-spi: Add support for Intel Lewisburg SPI serial flash
Intel Lewisburg chipset exposes the SPI serial flash controller as a PCI
device in the same way than Intel Denverton. Add Intel Lewisburg SPI
serial flash PCI ID to the driver list of supported devices.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
Diffstat (limited to 'drivers/mtd/spi-nor/intel-spi-pci.c')
-rw-r--r-- | drivers/mtd/spi-nor/intel-spi-pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/intel-spi-pci.c b/drivers/mtd/spi-nor/intel-spi-pci.c index e82652335ede..7fa5b81b0d88 100644 --- a/drivers/mtd/spi-nor/intel-spi-pci.c +++ b/drivers/mtd/spi-nor/intel-spi-pci.c @@ -64,6 +64,7 @@ static void intel_spi_pci_remove(struct pci_dev *pdev) static const struct pci_device_id intel_spi_pci_ids[] = { { PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info }, + { PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info }, { }, }; MODULE_DEVICE_TABLE(pci, intel_spi_pci_ids); |