diff options
author | Alim Akhtar <alim.akhtar@samsung.com> | 2011-09-19 10:27:26 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-09-19 10:27:26 +0900 |
commit | d5663e7a404ae97888bb8e7a7376de3fb0878ddd (patch) | |
tree | 05d3a1a8eba160d260ea56c87976e0b4e6e9e820 /arch/arm/mach-s5pc100/dma.c | |
parent | f86147cc8faca81de5edfa1fab07b119c1867322 (diff) | |
download | linux-3.10-d5663e7a404ae97888bb8e7a7376de3fb0878ddd.tar.gz linux-3.10-d5663e7a404ae97888bb8e7a7376de3fb0878ddd.tar.bz2 linux-3.10-d5663e7a404ae97888bb8e7a7376de3fb0878ddd.zip |
ARM: S5PC100: 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>
Diffstat (limited to 'arch/arm/mach-s5pc100/dma.c')
-rw-r--r-- | arch/arm/mach-s5pc100/dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pc100/dma.c b/arch/arm/mach-s5pc100/dma.c index ef803e92d35..065a087f5a8 100644 --- a/arch/arm/mach-s5pc100/dma.c +++ b/arch/arm/mach-s5pc100/dma.c @@ -260,6 +260,7 @@ struct amba_device s5pc100_device_pdma1 = { static int __init s5pc100_dma_init(void) { amba_device_register(&s5pc100_device_pdma0, &iomem_resource); + amba_device_register(&s5pc100_device_pdma1, &iomem_resource); return 0; } |