* [PATCH] USB: Don't return 0 if writing the download record failed
@ 2010-07-01 22:36 Roel Kluin
2010-07-08 18:44 ` patch "USB: serial: io_ti: Don't return 0 if writing the download record failed" added to gregkh-2.6 tree gregkh
0 siblings, 1 reply; 2+ messages in thread
From: Roel Kluin @ 2010-07-01 22:36 UTC (permalink / raw)
To: Greg Kroah-Hartman, linux-usb, Andrew Morton, LKML
If the write download record failed we shouldn't return 0.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
Maybe a different error value is more appropriate?
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c
index 0fca265..03696b9 100644
--- a/drivers/usb/serial/io_ti.c
+++ b/drivers/usb/serial/io_ti.c
@@ -1321,7 +1321,7 @@ static int download_fw(struct edgeport_serial *serial)
kfree(header);
kfree(rom_desc);
kfree(ti_manuf_desc);
- return status;
+ return -EINVAL;
}
kfree(vheader);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* patch "USB: serial: io_ti: Don't return 0 if writing the download record failed" added to gregkh-2.6 tree
2010-07-01 22:36 [PATCH] USB: Don't return 0 if writing the download record failed Roel Kluin
@ 2010-07-08 18:44 ` gregkh
0 siblings, 0 replies; 2+ messages in thread
From: gregkh @ 2010-07-08 18:44 UTC (permalink / raw)
To: roel.kluin, akpm, gregkh, linux-kernel
This is a note to let you know that I've just added the patch titled
USB: serial: io_ti: Don't return 0 if writing the download record failed
to my gregkh-2.6 tree which can be found in directory form at:
http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/
and in git form at:
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/patches.git
The filename of this patch is:
usb-serial-io_ti-don-t-return-0-if-writing-the-download-record-failed.patch
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
If this patch meets the merge guidelines for a bugfix, it should be
merged into Linus's tree before the next major kernel release.
If not, it will be merged into Linus's tree during the next merge window.
Either way, you will probably be copied on the patch when it gets sent
to Linus for merging so that others can see what is happening in kernel
development.
If you have any questions about this process, please let me know.
>From roel.kluin@gmail.com Thu Jul 8 11:35:42 2010
From: Roel Kluin <roel.kluin@gmail.com>
Date: Fri, 02 Jul 2010 00:36:43 +0200
Subject: USB: serial: io_ti: Don't return 0 if writing the download record failed
To: Greg Kroah-Hartman <gregkh@suse.de>, linux-usb@vger.kernel.org, Andrew Morton <akpm@linux-foundation.org>, LKML <linux-kernel@vger.kernel.org>
Message-ID: <4C2D187B.4020109@gmail.com>
If the write download record failed we shouldn't return 0.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
drivers/usb/serial/io_ti.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/usb/serial/io_ti.c
+++ b/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);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-07-08 18:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-01 22:36 [PATCH] USB: Don't return 0 if writing the download record failed Roel Kluin
2010-07-08 18:44 ` patch "USB: serial: io_ti: Don't return 0 if writing the download record failed" added to gregkh-2.6 tree gregkh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).