The patch titled char: cyclades, remove spurious check in ISR has been added to the -mm tree. Its filename is char-cyclades-remove-spurious-check-in-isr.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: char: cyclades, remove spurious check in ISR From: Jiri Slaby <jirislaby@xxxxxxxxx> No need to check if dev_id is NULL, it never is. Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/cyclades.c | 8 -------- 1 file changed, 8 deletions(-) diff -puN drivers/char/cyclades.c~char-cyclades-remove-spurious-check-in-isr drivers/char/cyclades.c --- a/drivers/char/cyclades.c~char-cyclades-remove-spurious-check-in-isr +++ a/drivers/char/cyclades.c @@ -1737,14 +1737,6 @@ static irqreturn_t cyz_interrupt(int irq { struct cyclades_card *cinfo = dev_id; - if (unlikely(cinfo == NULL)) { -#ifdef CY_DEBUG_INTERRUPTS - printk(KERN_DEBUG "cyz_interrupt: spurious interrupt %d\n", - irq); -#endif - return IRQ_NONE; /* spurious interrupt */ - } - if (unlikely(!ISZLOADED(*cinfo))) { #ifdef CY_DEBUG_INTERRUPTS printk(KERN_DEBUG "cyz_interrupt: board not yet loaded " _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are linux-next.patch icom-converting-space-to-tabs.patch char-isicom-fix-build-warning.patch char-cyclades-load-firmware-even-on-ze.patch char-cyclades-dont-kill-fw.patch char-cyclades-remove-spurious-check-in-isr.patch reiser4.patch shrink_slab-handle-bad-shrinkers.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html