Skip to content

Commit

Permalink
ARM: amba: nomadik: get rid of NO_IRQ initializers
Browse files Browse the repository at this point in the history
Acked-by: Alessandro Rubini <rubini@unipv.it>
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 887d555 commit b962f1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-nomadik/board-nhk8815.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,13 @@ static void __init nhk8815_onenand_init(void)
static struct amba_device uart0_device = {
.dev = { .init_name = "uart0" },
__MEM_4K_RESOURCE(NOMADIK_UART0_BASE),
.irq = {IRQ_UART0, NO_IRQ},
.irq = {IRQ_UART0},
};

static struct amba_device uart1_device = {
.dev = { .init_name = "uart1" },
__MEM_4K_RESOURCE(NOMADIK_UART1_BASE),
.irq = {IRQ_UART1, NO_IRQ},
.irq = {IRQ_UART1},
};

static struct amba_device *amba_devs[] __initdata = {
Expand Down

0 comments on commit b962f1b

Please sign in to comment.