aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMichal Nazarewicz <mina86@mina86.com>2013-11-10 19:37:54 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-25 09:25:18 -0800
commit8aced950222434b84e568663f5941ea39f112a7f (patch)
tree4e764f7dc9f9496ff8fdbdff817eda1733956288 /drivers
parentRevert "staging:media: Use dev_dbg() instead of pr_debug()" (diff)
downloadlinux-dev-8aced950222434b84e568663f5941ea39f112a7f.tar.xz
linux-dev-8aced950222434b84e568663f5941ea39f112a7f.zip
staging: ft1000: fix use of potentially uninitialized variable
If boot_case is false, status in never assigned a value. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/ft1000/ft1000-usb/ft1000_download.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_download.c b/drivers/staging/ft1000/ft1000-usb/ft1000_download.c
index 68ded17c0f5c..12f333fa59b5 100644
--- a/drivers/staging/ft1000/ft1000-usb/ft1000_download.c
+++ b/drivers/staging/ft1000/ft1000-usb/ft1000_download.c
@@ -578,7 +578,7 @@ static int request_code_segment(struct ft1000_usb *ft1000dev, u16 **s_file,
u8 **c_file, const u8 *endpoint, bool boot_case)
{
long word_length;
- int status;
+ int status = 0;
/*DEBUG("FT1000:REQUEST_CODE_SEGMENT\n");i*/
word_length = get_request_value(ft1000dev);
@@ -1074,4 +1074,3 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart,
return status;
}
-