Skip to content

Commit

Permalink
ARM: amba: get rid of NO_IRQ initializers
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Jan 25, 2012
1 parent 4ce02fd commit 0250eb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm/mach-ep93xx/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static struct amba_device uart1_device = {
.end = EP93XX_UART1_PHYS_BASE + 0x0fff,
.flags = IORESOURCE_MEM,
},
.irq = { IRQ_EP93XX_UART1, NO_IRQ },
.irq = { IRQ_EP93XX_UART1 },
.periphid = 0x00041010,
};

Expand All @@ -303,7 +303,7 @@ static struct amba_device uart2_device = {
.end = EP93XX_UART2_PHYS_BASE + 0x0fff,
.flags = IORESOURCE_MEM,
},
.irq = { IRQ_EP93XX_UART2, NO_IRQ },
.irq = { IRQ_EP93XX_UART2 },
.periphid = 0x00041010,
};

Expand All @@ -317,7 +317,7 @@ static struct amba_device uart3_device = {
.end = EP93XX_UART3_PHYS_BASE + 0x0fff,
.flags = IORESOURCE_MEM,
},
.irq = { IRQ_EP93XX_UART3, NO_IRQ },
.irq = { IRQ_EP93XX_UART3 },
.periphid = 0x00041010,
};

Expand Down

0 comments on commit 0250eb5

Please sign in to comment.