aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoel Kluin <[email protected]>2010-07-02 00:36:43 +0200
committerGreg Kroah-Hartman <[email protected]>2010-08-10 14:35:38 -0700
commit1e29709e2e577a862dbffe1c89f8033255a322bb (patch)
tree0ac6c832fc1c13cbd19dc5d1e67ea62162c7eef7
parentd0893264db29b9bfdb1bc66e731f4ed7f8b52795 (diff)
USB: serial: io_ti: Don't return 0 if writing the download record failed
If the write download record failed we shouldn't return 0. Signed-off-by: Roel Kluin <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/usb/serial/io_ti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c
index 0fca2659206f..03696b91bd6d 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);