diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-07 04:10:03 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-10-26 04:22:26 -0400 |
commit | 7832bb5d450aefa45b6dac3b3140eade66bb12ad (patch) | |
tree | 3edd05f51865bb500ba938dde435dcb2f599c207 /arch/blackfin/kernel | |
parent | 23405b024dbf2ffe5f5ef7a3460a7bfad489d5f4 (diff) |
Blackfin: irq: remove IRQF_DISABLED
This flag is a NOOP and can be removed now.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Acked-by: Bob Liu <lliubbo@kernel.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/kernel')
-rw-r--r-- | arch/blackfin/kernel/time-ts.c | 6 | ||||
-rw-r--r-- | arch/blackfin/kernel/time.c | 1 |
2 files changed, 2 insertions, 5 deletions
diff --git a/arch/blackfin/kernel/time-ts.c b/arch/blackfin/kernel/time-ts.c index 9e9b60d969dc..1bcf3a3c57d8 100644 --- a/arch/blackfin/kernel/time-ts.c +++ b/arch/blackfin/kernel/time-ts.c | |||
@@ -188,8 +188,7 @@ irqreturn_t bfin_gptmr0_interrupt(int irq, void *dev_id) | |||
188 | 188 | ||
189 | static struct irqaction gptmr0_irq = { | 189 | static struct irqaction gptmr0_irq = { |
190 | .name = "Blackfin GPTimer0", | 190 | .name = "Blackfin GPTimer0", |
191 | .flags = IRQF_DISABLED | IRQF_TIMER | \ | 191 | .flags = IRQF_TIMER | IRQF_IRQPOLL | IRQF_PERCPU, |
192 | IRQF_IRQPOLL | IRQF_PERCPU, | ||
193 | .handler = bfin_gptmr0_interrupt, | 192 | .handler = bfin_gptmr0_interrupt, |
194 | }; | 193 | }; |
195 | 194 | ||
@@ -297,8 +296,7 @@ irqreturn_t bfin_coretmr_interrupt(int irq, void *dev_id) | |||
297 | 296 | ||
298 | static struct irqaction coretmr_irq = { | 297 | static struct irqaction coretmr_irq = { |
299 | .name = "Blackfin CoreTimer", | 298 | .name = "Blackfin CoreTimer", |
300 | .flags = IRQF_DISABLED | IRQF_TIMER | \ | 299 | .flags = IRQF_TIMER | IRQF_IRQPOLL | IRQF_PERCPU, |
301 | IRQF_IRQPOLL | IRQF_PERCPU, | ||
302 | .handler = bfin_coretmr_interrupt, | 300 | .handler = bfin_coretmr_interrupt, |
303 | }; | 301 | }; |
304 | 302 | ||
diff --git a/arch/blackfin/kernel/time.c b/arch/blackfin/kernel/time.c index ceb2bf63dfe2..2310b249675f 100644 --- a/arch/blackfin/kernel/time.c +++ b/arch/blackfin/kernel/time.c | |||
@@ -25,7 +25,6 @@ | |||
25 | 25 | ||
26 | static struct irqaction bfin_timer_irq = { | 26 | static struct irqaction bfin_timer_irq = { |
27 | .name = "Blackfin Timer Tick", | 27 | .name = "Blackfin Timer Tick", |
28 | .flags = IRQF_DISABLED | ||
29 | }; | 28 | }; |
30 | 29 | ||
31 | #if defined(CONFIG_IPIPE) | 30 | #if defined(CONFIG_IPIPE) |