Skip to content

Commit

Permalink
ARM: amba: u300: get rid of NO_IRQ initializers
Browse files Browse the repository at this point in the history
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Jan 25, 2012
1 parent 8395e9d commit 3bf9688
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm/mach-u300/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 3bf9688

Please sign in to comment.