diff options
author | Emilio López <emilio@elopez.com.ar> | 2013-05-12 10:43:23 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-16 20:48:28 -0400 |
commit | 6523f6d2475df99e441bd742d2a8993f64124ce9 (patch) | |
tree | a5228f9aab3a150e450dc242e1b674135b59592e /drivers/usb/storage/alauda.c | |
parent | 4cb4f83826195e37dbaeaa0ba0b0c50110061009 (diff) |
usb: storage: alauda: initialize variables directly
Clean up the code a bit to initialize the variables directly when
defining them.
Signed-off-by: Emilio López <emilio@elopez.com.ar>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage/alauda.c')
-rw-r--r-- | drivers/usb/storage/alauda.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/usb/storage/alauda.c b/drivers/usb/storage/alauda.c index 77a2ddfe6487..6636a583da12 100644 --- a/drivers/usb/storage/alauda.c +++ b/drivers/usb/storage/alauda.c | |||
@@ -249,11 +249,7 @@ static void nand_init_ecc(void) { | |||
249 | /* compute 3-byte ecc on 256 bytes */ | 249 | /* compute 3-byte ecc on 256 bytes */ |
250 | static void nand_compute_ecc(unsigned char *data, unsigned char *ecc) { | 250 | static void nand_compute_ecc(unsigned char *data, unsigned char *ecc) { |
251 | int i, j, a; | 251 | int i, j, a; |
252 | unsigned char par, bit, bits[8]; | 252 | unsigned char par = 0, bit, bits[8] = {0}; |
253 | |||
254 | par = 0; | ||
255 | for (j = 0; j < 8; j++) | ||
256 | bits[j] = 0; | ||
257 | 253 | ||
258 | /* collect 16 checksum bits */ | 254 | /* collect 16 checksum bits */ |
259 | for (i = 0; i < 256; i++) { | 255 | for (i = 0; i < 256; i++) { |