The patch titled Char: cyclades, allow DEBUG_SHIRQ has been removed from the -mm tree. Its filename was char-cyclades-allow-debug_shirq.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Char: cyclades, allow DEBUG_SHIRQ From: Jiri Slaby <jirislaby@xxxxxxxxx> Test if base addr is non-null in ISR to prove the card has been correctly initialized. This is needed for DEBUG_SHIRQ for example. Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/cyclades.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN drivers/char/cyclades.c~char-cyclades-allow-debug_shirq drivers/char/cyclades.c --- a/drivers/char/cyclades.c~char-cyclades-allow-debug_shirq +++ a/drivers/char/cyclades.c @@ -1444,6 +1444,10 @@ static irqreturn_t cyy_interrupt(int irq card_base_addr = cinfo->base_addr; index = cinfo->bus_index; + /* card was not initialized yet (e.g. DEBUG_SHIRQ) */ + if (unlikely(card_base_addr == NULL)) + return IRQ_HANDLED; + /* This loop checks all chips in the card. Make a note whenever _any_ chip had some work to do, as this is considered an indication that there will be more to do. Only when no chip _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are origin.patch git-dvb.patch cinergyt2-fix-file-release-handler.patch auerswald-fix-file-release-handler.patch unify-queue_delayed_work-and-queue_delayed_work_on.patch vmstat-use-our-own-timer-events-fix.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