diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2015-03-13 17:44:25 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-26 23:01:37 +0100 |
commit | 594eb4a4be013b27a4ed28ccf5a3431432723719 (patch) | |
tree | 3f0723a0a5a0a6c66b1c6799151037f827ff0e9a /drivers/dma | |
parent | c1a67b48f6a5878b7ec9f49144faa02f94e965cc (diff) |
dmaengine: hsu: add Intel Tangier PCI ID
Intel Tangier is known to have the HSU DMA IP as PCI device 00:05.0. The patch
adds the ID as found on Intel Edison board to the PCI device table.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/hsu/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/hsu/pci.c b/drivers/dma/hsu/pci.c index 563b4685d766..77879e6ddc4c 100644 --- a/drivers/dma/hsu/pci.c +++ b/drivers/dma/hsu/pci.c @@ -105,6 +105,7 @@ static void hsu_pci_remove(struct pci_dev *pdev) static const struct pci_device_id hsu_pci_id_table[] = { { PCI_VDEVICE(INTEL, 0x081e), 0 }, + { PCI_VDEVICE(INTEL, 0x1192), 0 }, { } }; MODULE_DEVICE_TABLE(pci, hsu_pci_id_table); |