diff options
author | Alim Akhtar <alim.akhtar@samsung.com> | 2011-09-19 03:27:19 +0200 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-09-19 03:27:19 +0200 |
commit | fad23ddac36920600e2457cf540c4d6383290cd2 (patch) | |
tree | 7f6070010951d91f0d83183ee07441263ffb48aa | |
parent | Merge branch 'samsung_dma' of git://git.infradead.org/users/vkoul/slave-dma i... (diff) | |
download | linux-fad23ddac36920600e2457cf540c4d6383290cd2.tar.xz linux-fad23ddac36920600e2457cf540c4d6383290cd2.zip |
ARM: EXYNOS4: register the second instance of pl330 DMAC
Platform data is provided for two instance of pl330 DMAC,
but only one DMAC is register with amba_device.
This patch register the second instance.
Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
-rw-r--r-- | arch/arm/mach-exynos4/dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos4/dma.c b/arch/arm/mach-exynos4/dma.c index d57d66255021..9667c61e64fb 100644 --- a/arch/arm/mach-exynos4/dma.c +++ b/arch/arm/mach-exynos4/dma.c @@ -243,6 +243,7 @@ struct amba_device exynos4_device_pdma1 = { static int __init exynos4_dma_init(void) { amba_device_register(&exynos4_device_pdma0, &iomem_resource); + amba_device_register(&exynos4_device_pdma1, &iomem_resource); return 0; } |