diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-22 04:59:15 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-09-22 19:08:57 -0400 |
commit | 9cfb5c05fee914cc65d4706801f6bc424082b5f5 (patch) | |
tree | a71d33f1c89841b4e848546c0dedd9b880f473f7 /drivers/tty/hvc/hvsi.c | |
parent | 94abc56f4d90f289ea32a0a11d3577fcd8cb28fb (diff) |
TTY: 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>
Acked-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/tty/hvc/hvsi.c')
-rw-r--r-- | drivers/tty/hvc/hvsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/hvc/hvsi.c b/drivers/tty/hvc/hvsi.c index c94e2f5853d8..cdfa3e02d627 100644 --- a/drivers/tty/hvc/hvsi.c +++ b/drivers/tty/hvc/hvsi.c | |||
@@ -1105,7 +1105,7 @@ static int __init hvsi_init(void) | |||
1105 | struct hvsi_struct *hp = &hvsi_ports[i]; | 1105 | struct hvsi_struct *hp = &hvsi_ports[i]; |
1106 | int ret = 1; | 1106 | int ret = 1; |
1107 | 1107 | ||
1108 | ret = request_irq(hp->virq, hvsi_interrupt, IRQF_DISABLED, "hvsi", hp); | 1108 | ret = request_irq(hp->virq, hvsi_interrupt, 0, "hvsi", hp); |
1109 | if (ret) | 1109 | if (ret) |
1110 | printk(KERN_ERR "HVSI: couldn't reserve irq 0x%x (error %i)\n", | 1110 | printk(KERN_ERR "HVSI: couldn't reserve irq 0x%x (error %i)\n", |
1111 | hp->virq, ret); | 1111 | hp->virq, ret); |