mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 13:46:24 +00:00
USB: fix uninitialised variable in ti_do_download
Signed-off-by: Oliver Neukum <oliver@neukum.org> Cc: stable <stable@kernel.org> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
71f9f6cc9e
commit
87ea8c8879
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue