Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754648Ab3ELOo4 (ORCPT ); Sun, 12 May 2013 10:44:56 -0400 Received: from zetta.elopez.com.ar ([199.30.59.35]:36544 "EHLO zetta.elopez.com.ar" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754176Ab3ELOoz (ORCPT ); Sun, 12 May 2013 10:44:55 -0400 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= To: Matthew Dharm , Greg Kroah-Hartman Cc: , usb-storage@lists.one-eyed-alien.net, , =?UTF-8?q?Emilio=20L=C3=B3pez?= Subject: [PATCH 1/2] usb: storage: sddr09: initialize variables directly Date: Sun, 12 May 2013 11:43:22 -0300 Message-Id: <1368369803-17656-1-git-send-email-emilio@elopez.com.ar> X-Mailer: git-send-email 1.8.2.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1084 Lines: 36 Clean up the code a bit to initialize the variables directly when defining them. Signed-off-by: Emilio López --- Please note that this patch is untested. drivers/usb/storage/sddr09.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/usb/storage/sddr09.c b/drivers/usb/storage/sddr09.c index 732027f..073a2c3 100644 --- a/drivers/usb/storage/sddr09.c +++ b/drivers/usb/storage/sddr09.c @@ -219,11 +219,7 @@ static void nand_init_ecc(void) { /* compute 3-byte ecc on 256 bytes */ static void nand_compute_ecc(unsigned char *data, unsigned char *ecc) { int i, j, a; - unsigned char par, bit, bits[8]; - - par = 0; - for (j = 0; j < 8; j++) - bits[j] = 0; + unsigned char par = 0, bit, bits[8] = {0}; /* collect 16 checksum bits */ for (i = 0; i < 256; i++) { -- 1.8.2.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/