aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-u300
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2011-12-18 11:42:44 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2012-01-25 11:04:02 +0000
commit3bf96889976168827eade6788f26391de051e872 (patch)
tree70cd2ec3fa381ad47f5fbd673cd2d6f3754c5581 /arch/arm/mach-u300
parentARM: amba: spear: get rid of NO_IRQ initializers (diff)
downloadlinux-dev-3bf96889976168827eade6788f26391de051e872.tar.xz
linux-dev-3bf96889976168827eade6788f26391de051e872.zip
ARM: amba: u300: get rid of NO_IRQ initializers
Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-u300')
-rw-r--r--arch/arm/mach-u300/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-u300/core.c b/arch/arm/mach-u300/core.c
index b4c6926a700c..ed9296796461 100644
--- a/arch/arm/mach-u300/core.c
+++ b/arch/arm/mach-u300/core.c
@@ -105,7 +105,7 @@ static struct amba_device uart0_device = {
.end = U300_UART0_BASE + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
- .irq = { IRQ_U300_UART0, NO_IRQ },
+ .irq = { IRQ_U300_UART0 },
};
/* The U335 have an additional UART1 on the APP CPU */
@@ -129,7 +129,7 @@ static struct amba_device uart1_device = {
.end = U300_UART1_BASE + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
- .irq = { IRQ_U300_UART1, NO_IRQ },
+ .irq = { IRQ_U300_UART1 },
};
#endif
@@ -160,7 +160,7 @@ static struct amba_device pl022_device = {
.end = U300_SPI_BASE + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
- .irq = {IRQ_U300_SPI, NO_IRQ },
+ .irq = {IRQ_U300_SPI },
/*
* This device has a DMA channel but the Linux driver does not use
* it currently.