summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--short/short.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/short/short.c b/short/short.c
index 25ee0da..d85e6e4 100644
--- a/short/short.c
+++ b/short/short.c
@@ -511,7 +511,7 @@ void short_selfprobe(void)
*/
for (i = 0; trials[i]; i++)
tried[i] = request_irq(trials[i], short_probing,
- IRQF_DISABLED, "short probe", NULL);
+ 0, "short probe", NULL);
do {
short_irq = 0; /* none got, yet */
@@ -621,7 +621,7 @@ int short_init(void)
*/
if (short_irq >= 0 && share > 0) {
result = request_irq(short_irq, short_sh_interrupt,
- IRQF_SHARED | IRQF_DISABLED,"short",
+ IRQF_SHARED,"short",
short_sh_interrupt);
if (result) {
printk(KERN_INFO "short: can't get assigned irq %i\n", short_irq);
@@ -635,7 +635,7 @@ int short_init(void)
if (short_irq >= 0) {
result = request_irq(short_irq, short_interrupt,
- IRQF_DISABLED, "short", NULL);
+ 0, "short", NULL);
if (result) {
printk(KERN_INFO "short: can't get assigned irq %i\n",
short_irq);
@@ -655,7 +655,7 @@ int short_init(void)
result = request_irq(short_irq,
tasklet ? short_tl_interrupt :
short_wq_interrupt,
- IRQF_DISABLED,"short-bh", NULL);
+ 0, "short-bh", NULL);
if (result) {
printk(KERN_INFO "short-bh: can't get assigned irq %i\n",
short_irq);