diff mbox

[v1] dma: dw: add a PCI ID for Intel Haswell SoC

Message ID 1391686015-7719-1-git-send-email-andriy.shevchenko@linux.intel.com (mailing list archive)
State Accepted
Commit 24066813d55b
Delegated to: Vinod Koul
Headers show

Commit Message

Andy Shevchenko Feb. 6, 2014, 11:26 a.m. UTC
In case of PCI mode the DMA controller has a specific ID. Put this ID to the
list of supported.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/dma/dw/pci.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Vinod Koul Feb. 11, 2014, 6:04 p.m. UTC | #1
On Thu, Feb 06, 2014 at 01:26:55PM +0200, Andy Shevchenko wrote:
> In case of PCI mode the DMA controller has a specific ID. Put this ID to the
> list of supported.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Applied, thanks
diff mbox

Patch

diff --git a/drivers/dma/dw/pci.c b/drivers/dma/dw/pci.c
index e89fc24..755cc6b 100644
--- a/drivers/dma/dw/pci.c
+++ b/drivers/dma/dw/pci.c
@@ -83,6 +83,9 @@  static DEFINE_PCI_DEVICE_TABLE(dw_pci_id_table) = {
 	/* BayTrail */
 	{ PCI_VDEVICE(INTEL, 0x0f06), (kernel_ulong_t)&dw_pci_pdata },
 	{ PCI_VDEVICE(INTEL, 0x0f40), (kernel_ulong_t)&dw_pci_pdata },
+
+	/* Haswell */
+	{ PCI_VDEVICE(INTEL, 0x9c60), (kernel_ulong_t)&dw_pci_pdata },
 	{ }
 };
 MODULE_DEVICE_TABLE(pci, dw_pci_id_table);