The patch titled drivers/usb/serial/io_ti.c: don't return 0 if writing the download record failed has been added to the -mm tree. Its filename is drivers-usb-serial-io_tic-dont-return-0-if-writing-the-download-record-failed.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: drivers/usb/serial/io_ti.c: don't return 0 if writing the download record failed From: Roel Kluin <roel.kluin@xxxxxxxxx> If the write download record failed we shouldn't return 0. Signed-off-by: Roel Kluin <roel.kluin@xxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/io_ti.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/usb/serial/io_ti.c~drivers-usb-serial-io_tic-dont-return-0-if-writing-the-download-record-failed drivers/usb/serial/io_ti.c --- a/drivers/usb/serial/io_ti.c~drivers-usb-serial-io_tic-dont-return-0-if-writing-the-download-record-failed +++ a/drivers/usb/serial/io_ti.c @@ -1321,7 +1321,7 @@ static int download_fw(struct edgeport_s kfree(header); kfree(rom_desc); kfree(ti_manuf_desc); - return status; + return -EINVAL; } kfree(vheader); _ Patches currently in -mm which might be from roel.kluin@xxxxxxxxx are linux-next.patch mtd-return-1-if-verify-failed.patch score-fix-dereference-of-null-pointer-in-local_flush_tlb_page.patch osst-fix-read-buffer-overflow.patch gdth-unmap-ccb_phys-when-scsi_add_host-fails-in-gdth_eisa_probe_one.patch ncr5380-bit-mr_dma_mode-set-twice-in-ncr5380_transfer_dma.patch dc395x-decrease-iteration-for-tag_number-of-max_command-in-start_scsi.patch scsi-bfa-correct-onstack-wait_queue_head-declaration.patch bfa-wrong-fcport-h2i-message-tested-in-bfa_fcport_isr.patch drivers-usb-serial-io_tic-dont-return-0-if-writing-the-download-record-failed.patch frv-duplicate-output_buffer-of-e03.patch frv-duplicate-output_buffer-of-e03-checkpatch-fixes.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