patch-2.2.12 linux/arch/ppc/kernel/irq.c
Next file: linux/arch/ppc/kernel/misc.S
Previous file: linux/arch/ppc/kernel/i8259.c
Back to the patch index
Back to the overall index
- Lines: 31
- Date:
Wed Aug 25 17:29:46 1999
- Orig file:
v2.2.11/linux/arch/ppc/kernel/irq.c
- Orig date:
Mon Aug 9 16:05:55 1999
diff -u --recursive --new-file v2.2.11/linux/arch/ppc/kernel/irq.c linux/arch/ppc/kernel/irq.c
@@ -1,5 +1,5 @@
/*
- * $Id: irq.c,v 1.105.2.2 1999/06/17 01:16:10 paulus Exp $
+ * $Id: irq.c,v 1.105.2.3 1999/07/22 01:49:41 cort Exp $
*
* arch/ppc/kernel/irq.c
*
@@ -139,13 +139,16 @@
/* Free */
for (p = &irq_desc[irq].action; (action = *p) != NULL; p = &action->next)
{
- /* Found it - now free it */
- save_flags(flags);
- cli();
- *p = action->next;
- restore_flags(flags);
- irq_kfree(action);
- return 0;
+ if (action->dev_id == dev_id)
+ {
+ /* Found it - now free it */
+ save_flags(flags);
+ cli();
+ *p = action->next;
+ restore_flags(flags);
+ irq_kfree(action);
+ return 0;
+ }
}
return -ENOENT;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)