projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f6a928
)
dma: dw: add a PCI ID for Intel Haswell SoC
author
Andy Shevchenko
<andriy.shevchenko@linux.intel.com>
Thu, 6 Feb 2014 11:26:55 +0000
(13:26 +0200)
committer
Vinod Koul
<vinod.koul@intel.com>
Tue, 11 Feb 2014 18:04:32 +0000
(23:34 +0530)
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>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/dw/pci.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/dma/dw/pci.c
b/drivers/dma/dw/pci.c
index e89fc24b829307b88b5ce022296fb47328127c44..755cc6b544537dd44f1ad874a002bf95eaaa5ffd 100644
(file)
--- 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);