diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-12-18 11:42:14 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-25 11:02:03 +0000 |
commit | 8a47ae8b96640bc9f049dce0d8ba6980176da0ea (patch) | |
tree | 8ab9c07d47e1089554bf983e460300207f3bdfe5 /arch/arm/mach-exynos | |
parent | 0250eb5e7d19b0f89330be30a88e216db1849aed (diff) | |
download | op-kernel-dev-8a47ae8b96640bc9f049dce0d8ba6980176da0ea.zip op-kernel-dev-8a47ae8b96640bc9f049dce0d8ba6980176da0ea.tar.gz |
ARM: amba: samsung: get rid of NO_IRQ initializers
Acked-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r-- | arch/arm/mach-exynos/dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-exynos/dma.c b/arch/arm/mach-exynos/dma.c index b10fcd2..8d681bf 100644 --- a/arch/arm/mach-exynos/dma.c +++ b/arch/arm/mach-exynos/dma.c @@ -86,7 +86,7 @@ struct amba_device exynos4_device_pdma0 = { .end = EXYNOS4_PA_PDMA0 + SZ_4K, .flags = IORESOURCE_MEM, }, - .irq = {IRQ_PDMA0, NO_IRQ}, + .irq = {IRQ_PDMA0}, .periphid = 0x00041330, }; @@ -135,7 +135,7 @@ struct amba_device exynos4_device_pdma1 = { .end = EXYNOS4_PA_PDMA1 + SZ_4K, .flags = IORESOURCE_MEM, }, - .irq = {IRQ_PDMA1, NO_IRQ}, + .irq = {IRQ_PDMA1}, .periphid = 0x00041330, }; |