aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Neukum <[email protected]>2009-06-30 09:44:24 +0200
committerGreg Kroah-Hartman <[email protected]>2009-07-12 15:16:38 -0700
commit87ea8c887905d8b13ae90b537117592ed027632a (patch)
treeb8e241b484545165cc2c96530272adcc7fcdfaac
parent71f9f6cc9eef47fddc05f34b3d32677ab2e0f1fa (diff)
USB: fix uninitialised variable in ti_do_download
Signed-off-by: Oliver Neukum <[email protected]> Cc: stable <[email protected]> Cc: Andrew Morton <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/usb/serial/ti_usb_3410_5052.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c
index 35d8852eeff7..14971a926990 100644
--- a/drivers/usb/serial/ti_usb_3410_5052.c
+++ b/drivers/usb/serial/ti_usb_3410_5052.c
@@ -1657,7 +1657,7 @@ static int ti_do_download(struct usb_device *dev, int pipe,
u8 cs = 0;
int done;
struct ti_firmware_header *header;
- int status;
+ int status = 0;
int len;
for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)