The patch titled ISDN: fix BChannel_bh() call from isar_bh() has been added to the -mm tree. Its filename is isdn-fix-bchannel_bh-call-from-isar_bh.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 isdn-fix-bchannel_bh-call-from-isar_bh.patch git-hid.patch bluetooth-hid-quirks-mightymouse-quirk.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