diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-10-22 05:56:28 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-10-28 01:39:28 -0400 |
commit | d11584a0449f881181dc94dd697d3f3896c15c73 (patch) | |
tree | 0ca8ec496e6ba3a5ae687b8ba4cea5f55cc5bec2 /arch/sh/boards/mach-cayman/irq.c | |
parent | c63bcc6ff135397b38cdb510c173e4a6629cede5 (diff) |
SH: irq: Remove IRQF_DISABLED
Since commit [e58aa3d2: genirq: Run irq handlers with interrupts disabled],
We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler
returns with interrupts enabled (see commit [b738a50a:
genirq: Warn when handler enables interrupts]).
So now this flag is a NOOP and can be removed.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/mach-cayman/irq.c')
-rw-r--r-- | arch/sh/boards/mach-cayman/irq.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/boards/mach-cayman/irq.c b/arch/sh/boards/mach-cayman/irq.c index 311bcebdbd07..724e8b7271f4 100644 --- a/arch/sh/boards/mach-cayman/irq.c +++ b/arch/sh/boards/mach-cayman/irq.c | |||
@@ -46,13 +46,11 @@ static irqreturn_t cayman_interrupt_pci2(int irq, void *dev_id) | |||
46 | static struct irqaction cayman_action_smsc = { | 46 | static struct irqaction cayman_action_smsc = { |
47 | .name = "Cayman SMSC Mux", | 47 | .name = "Cayman SMSC Mux", |
48 | .handler = cayman_interrupt_smsc, | 48 | .handler = cayman_interrupt_smsc, |
49 | .flags = IRQF_DISABLED, | ||
50 | }; | 49 | }; |
51 | 50 | ||
52 | static struct irqaction cayman_action_pci2 = { | 51 | static struct irqaction cayman_action_pci2 = { |
53 | .name = "Cayman PCI2 Mux", | 52 | .name = "Cayman PCI2 Mux", |
54 | .handler = cayman_interrupt_pci2, | 53 | .handler = cayman_interrupt_pci2, |
55 | .flags = IRQF_DISABLED, | ||
56 | }; | 54 | }; |
57 | 55 | ||
58 | static void enable_cayman_irq(struct irq_data *data) | 56 | static void enable_cayman_irq(struct irq_data *data) |