The patch titled hso: fix debug routines has been added to the -mm tree. Its filename is hso-fix-debug-routines.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: hso: fix debug routines From: Antti Kaijanmäki <antti.kaijanmaki@xxxxxxxxxxx> Signed-off-by: Antti Kaijanmäki <antti.kaijanmaki@xxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN drivers/net/usb/hso.c~hso-fix-debug-routines drivers/net/usb/hso.c --- a/drivers/net/usb/hso.c~hso-fix-debug-routines +++ a/drivers/net/usb/hso.c @@ -378,7 +378,7 @@ static void dbg_dump(int line_count, con } #define DUMP(buf_, len_) \ - dbg_dump(__LINE__, __func__, buf_, len_) + dbg_dump(__LINE__, __func__, (unsigned char *)buf_, len_) #define DUMP1(buf_, len_) \ do { \ @@ -1527,7 +1527,7 @@ static void tiocmget_intr_callback(struc dev_warn(&usb->dev, "hso received invalid serial state notification\n"); DUMP(serial_state_notification, - sizeof(hso_serial_state_notifation)) + sizeof(struct hso_serial_state_notification)); } else { UART_state_bitmap = le16_to_cpu(serial_state_notification-> _ Patches currently in -mm which might be from antti.kaijanmaki@xxxxxxxxxxx are hso-fix-debug-routines.patch hso-fix-soft-lockup.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