The patch titled ISDN: fix BChannel_bh() call from isar_bh() has been removed from the -mm tree. Its filename was isdn-fix-bchannel_bh-call-from-isar_bh.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ISDN: fix BChannel_bh() call from isar_bh() From: Jiri Kosina <jkosina@xxxxxxx> isar_bh() bh handler calls another (compatible) bh handler - BChannel_bh() - but passes struct BCState* instead of struct work_struct*, which seems wrong. Cc: Karsten Keil <kkeil@xxxxxxx> Signed-off-by: Jiri Kosina <jkosina@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/isdn/hisax/isar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/isdn/hisax/isar.c~isdn-fix-bchannel_bh-call-from-isar_bh drivers/isdn/hisax/isar.c --- a/drivers/isdn/hisax/isar.c~isdn-fix-bchannel_bh-call-from-isar_bh +++ a/drivers/isdn/hisax/isar.c @@ -440,7 +440,7 @@ isar_bh(struct work_struct *work) { struct BCState *bcs = container_of(work, struct BCState, tqueue); - BChannel_bh(bcs); + BChannel_bh(work); if (test_and_clear_bit(B_LL_NOCARRIER, &bcs->event)) ll_deliver_faxstat(bcs, ISDN_FAX_CLASS1_NOCARR); if (test_and_clear_bit(B_LL_CONNECT, &bcs->event)) _ Patches currently in -mm which might be from jkosina@xxxxxxx are origin.patch bluetooth-hid-quirks-mightymouse-quirk-2.patch git-hid.patch git-ipwireless_cs.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