aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-integrator
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2011-12-18 06:40:46 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2012-01-25 06:04:01 -0500
commit0dada61a29ddaaca5985c76aafec341b4ad3e989 (patch)
treed34e8b34f9f9ed0dd01004c3dec91e41cc8eaff4 /arch/arm/mach-integrator
parent8a47ae8b96640bc9f049dce0d8ba6980176da0ea (diff)
ARM: amba: integrator/realview/versatile/vexpress: get rid of NO_IRQ initializers
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-integrator')
-rw-r--r--arch/arm/mach-integrator/core.c10
-rw-r--r--arch/arm/mach-integrator/integrator_cp.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-integrator/core.c b/arch/arm/mach-integrator/core.c
index 019f0ab08f66..29baef9d8f76 100644
--- a/arch/arm/mach-integrator/core.c
+++ b/arch/arm/mach-integrator/core.c
@@ -44,7 +44,7 @@ static struct amba_device rtc_device = {
44 .end = INTEGRATOR_RTC_BASE + SZ_4K - 1, 44 .end = INTEGRATOR_RTC_BASE + SZ_4K - 1,
45 .flags = IORESOURCE_MEM, 45 .flags = IORESOURCE_MEM,
46 }, 46 },
47 .irq = { IRQ_RTCINT, NO_IRQ }, 47 .irq = { IRQ_RTCINT },
48}; 48};
49 49
50static struct amba_device uart0_device = { 50static struct amba_device uart0_device = {
@@ -57,7 +57,7 @@ static struct amba_device uart0_device = {
57 .end = INTEGRATOR_UART0_BASE + SZ_4K - 1, 57 .end = INTEGRATOR_UART0_BASE + SZ_4K - 1,
58 .flags = IORESOURCE_MEM, 58 .flags = IORESOURCE_MEM,
59 }, 59 },
60 .irq = { IRQ_UARTINT0, NO_IRQ }, 60 .irq = { IRQ_UARTINT0 },
61}; 61};
62 62
63static struct amba_device uart1_device = { 63static struct amba_device uart1_device = {
@@ -70,7 +70,7 @@ static struct amba_device uart1_device = {
70 .end = INTEGRATOR_UART1_BASE + SZ_4K - 1, 70 .end = INTEGRATOR_UART1_BASE + SZ_4K - 1,
71 .flags = IORESOURCE_MEM, 71 .flags = IORESOURCE_MEM,
72 }, 72 },
73 .irq = { IRQ_UARTINT1, NO_IRQ }, 73 .irq = { IRQ_UARTINT1 },
74}; 74};
75 75
76static struct amba_device kmi0_device = { 76static struct amba_device kmi0_device = {
@@ -82,7 +82,7 @@ static struct amba_device kmi0_device = {
82 .end = KMI0_BASE + SZ_4K - 1, 82 .end = KMI0_BASE + SZ_4K - 1,
83 .flags = IORESOURCE_MEM, 83 .flags = IORESOURCE_MEM,
84 }, 84 },
85 .irq = { IRQ_KMIINT0, NO_IRQ }, 85 .irq = { IRQ_KMIINT0 },
86}; 86};
87 87
88static struct amba_device kmi1_device = { 88static struct amba_device kmi1_device = {
@@ -94,7 +94,7 @@ static struct amba_device kmi1_device = {
94 .end = KMI1_BASE + SZ_4K - 1, 94 .end = KMI1_BASE + SZ_4K - 1,
95 .flags = IORESOURCE_MEM, 95 .flags = IORESOURCE_MEM,
96 }, 96 },
97 .irq = { IRQ_KMIINT1, NO_IRQ }, 97 .irq = { IRQ_KMIINT1 },
98}; 98};
99 99
100static struct amba_device *amba_devs[] __initdata = { 100static struct amba_device *amba_devs[] __initdata = {
diff --git a/arch/arm/mach-integrator/integrator_cp.c b/arch/arm/mach-integrator/integrator_cp.c
index a8b6aa6003f3..ecc08ed4f3c4 100644
--- a/arch/arm/mach-integrator/integrator_cp.c
+++ b/arch/arm/mach-integrator/integrator_cp.c
@@ -370,7 +370,7 @@ static struct amba_device aaci_device = {
370 .end = INTEGRATOR_CP_AACI_BASE + SZ_4K - 1, 370 .end = INTEGRATOR_CP_AACI_BASE + SZ_4K - 1,
371 .flags = IORESOURCE_MEM, 371 .flags = IORESOURCE_MEM,
372 }, 372 },
373 .irq = { IRQ_CP_AACIINT, NO_IRQ }, 373 .irq = { IRQ_CP_AACIINT },
374 .periphid = 0, 374 .periphid = 0,
375}; 375};
376 376
@@ -437,7 +437,7 @@ static struct amba_device clcd_device = {
437 .flags = IORESOURCE_MEM, 437 .flags = IORESOURCE_MEM,
438 }, 438 },
439 .dma_mask = ~0, 439 .dma_mask = ~0,
440 .irq = { IRQ_CP_CLCDCINT, NO_IRQ }, 440 .irq = { IRQ_CP_CLCDCINT },
441 .periphid = 0, 441 .periphid = 0,
442}; 442};
443 443