aboutsummaryrefslogtreecommitdiffstats
path: root/arch/frv
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>2014-10-09 18:30:08 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-09 22:26:03 -0400
commit08e4cf4be2153b0eac503679004889fd7e28c819 (patch)
tree0833100a29614fdefdf08730494fa0c8227b5b0f /arch/frv
parent21f456607a7acc73947580a84eb36d180d2562b7 (diff)
frv: remove deprecated IRQF_DISABLED
Remove the IRQF_DISABLED flag from FRV architecture code. It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com> Cc: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv')
-rw-r--r--arch/frv/kernel/irq-mb93091.c8
-rw-r--r--arch/frv/kernel/irq-mb93093.c1
-rw-r--r--arch/frv/kernel/irq-mb93493.c4
-rw-r--r--arch/frv/kernel/time.c1
4 files changed, 6 insertions, 8 deletions
diff --git a/arch/frv/kernel/irq-mb93091.c b/arch/frv/kernel/irq-mb93091.c
index 2cc327a1ca44..091b2839be90 100644
--- a/arch/frv/kernel/irq-mb93091.c
+++ b/arch/frv/kernel/irq-mb93091.c
@@ -107,25 +107,25 @@ static irqreturn_t fpga_interrupt(int irq, void *_mask)
107static struct irqaction fpga_irq[4] = { 107static struct irqaction fpga_irq[4] = {
108 [0] = { 108 [0] = {
109 .handler = fpga_interrupt, 109 .handler = fpga_interrupt,
110 .flags = IRQF_DISABLED | IRQF_SHARED, 110 .flags = IRQF_SHARED,
111 .name = "fpga.0", 111 .name = "fpga.0",
112 .dev_id = (void *) 0x0028UL, 112 .dev_id = (void *) 0x0028UL,
113 }, 113 },
114 [1] = { 114 [1] = {
115 .handler = fpga_interrupt, 115 .handler = fpga_interrupt,
116 .flags = IRQF_DISABLED | IRQF_SHARED, 116 .flags = IRQF_SHARED,
117 .name = "fpga.1", 117 .name = "fpga.1",
118 .dev_id = (void *) 0x0050UL, 118 .dev_id = (void *) 0x0050UL,
119 }, 119 },
120 [2] = { 120 [2] = {
121 .handler = fpga_interrupt, 121 .handler = fpga_interrupt,
122 .flags = IRQF_DISABLED | IRQF_SHARED, 122 .flags = IRQF_SHARED,
123 .name = "fpga.2", 123 .name = "fpga.2",
124 .dev_id = (void *) 0x1c00UL, 124 .dev_id = (void *) 0x1c00UL,
125 }, 125 },
126 [3] = { 126 [3] = {
127 .handler = fpga_interrupt, 127 .handler = fpga_interrupt,
128 .flags = IRQF_DISABLED | IRQF_SHARED, 128 .flags = IRQF_SHARED,
129 .name = "fpga.3", 129 .name = "fpga.3",
130 .dev_id = (void *) 0x6386UL, 130 .dev_id = (void *) 0x6386UL,
131 } 131 }
diff --git a/arch/frv/kernel/irq-mb93093.c b/arch/frv/kernel/irq-mb93093.c
index 95e4eb4f1f38..1f3015cf80f5 100644
--- a/arch/frv/kernel/irq-mb93093.c
+++ b/arch/frv/kernel/irq-mb93093.c
@@ -105,7 +105,6 @@ static irqreturn_t fpga_interrupt(int irq, void *_mask)
105static struct irqaction fpga_irq[1] = { 105static struct irqaction fpga_irq[1] = {
106 [0] = { 106 [0] = {
107 .handler = fpga_interrupt, 107 .handler = fpga_interrupt,
108 .flags = IRQF_DISABLED,
109 .name = "fpga.0", 108 .name = "fpga.0",
110 .dev_id = (void *) 0x0700UL, 109 .dev_id = (void *) 0x0700UL,
111 } 110 }
diff --git a/arch/frv/kernel/irq-mb93493.c b/arch/frv/kernel/irq-mb93493.c
index ba648da0932d..8ca5aa4ff595 100644
--- a/arch/frv/kernel/irq-mb93493.c
+++ b/arch/frv/kernel/irq-mb93493.c
@@ -118,13 +118,13 @@ static irqreturn_t mb93493_interrupt(int irq, void *_piqsr)
118static struct irqaction mb93493_irq[2] = { 118static struct irqaction mb93493_irq[2] = {
119 [0] = { 119 [0] = {
120 .handler = mb93493_interrupt, 120 .handler = mb93493_interrupt,
121 .flags = IRQF_DISABLED | IRQF_SHARED, 121 .flags = IRQF_SHARED,
122 .name = "mb93493.0", 122 .name = "mb93493.0",
123 .dev_id = (void *) __addr_MB93493_IQSR(0), 123 .dev_id = (void *) __addr_MB93493_IQSR(0),
124 }, 124 },
125 [1] = { 125 [1] = {
126 .handler = mb93493_interrupt, 126 .handler = mb93493_interrupt,
127 .flags = IRQF_DISABLED | IRQF_SHARED, 127 .flags = IRQF_SHARED,
128 .name = "mb93493.1", 128 .name = "mb93493.1",
129 .dev_id = (void *) __addr_MB93493_IQSR(1), 129 .dev_id = (void *) __addr_MB93493_IQSR(1),
130 } 130 }
diff --git a/arch/frv/kernel/time.c b/arch/frv/kernel/time.c
index b457de496b70..332e00bf9d06 100644
--- a/arch/frv/kernel/time.c
+++ b/arch/frv/kernel/time.c
@@ -44,7 +44,6 @@ static irqreturn_t timer_interrupt(int irq, void *dummy);
44 44
45static struct irqaction timer_irq = { 45static struct irqaction timer_irq = {
46 .handler = timer_interrupt, 46 .handler = timer_interrupt,
47 .flags = IRQF_DISABLED,
48 .name = "timer", 47 .name = "timer",
49}; 48};
50 49