diff options
| author | Mika Westerberg <[email protected]> | 2019-06-20 15:26:28 +0300 |
|---|---|---|
| committer | Tudor Ambarus <[email protected]> | 2019-06-22 14:59:18 +0300 |
| commit | ba0d4e04a5b57ef048dbf3afd9107ae6ca353258 (patch) | |
| tree | c3cc36ffb8b31818872d85f4777466f9a1a2c6cc | |
| parent | 2d60d1f64b57b5a5cb259caa6fbe4aaa3f9def3a (diff) | |
mtd: spi-nor: intel-spi: Add support for Intel Elkhart Lake SPI serial flash
Intel Elkhart Lake has the same SPI serial flash controller as Ice Lake.
Add Elkhart Lake PCI ID to the driver list of supported devices.
Signed-off-by: Mika Westerberg <[email protected]>
Signed-off-by: Tudor Ambarus <[email protected]>
| -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 bfbfc17ed6aa..578f0c74e536 100644 --- a/drivers/mtd/spi-nor/intel-spi-pci.c +++ b/drivers/mtd/spi-nor/intel-spi-pci.c @@ -67,6 +67,7 @@ static const struct pci_device_id intel_spi_pci_ids[] = { { PCI_VDEVICE(INTEL, 0x18e0), (unsigned long)&bxt_info }, { PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info }, { PCI_VDEVICE(INTEL, 0x34a4), (unsigned long)&bxt_info }, + { PCI_VDEVICE(INTEL, 0x4b24), (unsigned long)&bxt_info }, { PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info }, { PCI_VDEVICE(INTEL, 0xa224), (unsigned long)&bxt_info }, { }, |