[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1336606537-11538-1-git-send-email-trbecker@trbecker.org>
Date: Wed, 9 May 2012 20:35:37 -0300
From: Thiago Rafael Becker <trbecker@...ecker.org>
To: akpm@...ux-foundation.org, djwong@...ibm.com,
kernel-janitors@...r.kernel.org
Cc: Thiago Rafael Becker <trbecker@...ecker.org>,
linux-kernel@...r.kernel.org
Subject: [PATCH] crc32.c: cleanup unused variables warning
Variables t4, t5, t6 and t7 are only used when CRC_LE_BITS != 32. This cleans
the following compilation warnings:
lib/crc32.c: In function 'crc32_body':
lib/crc32.c:77:55: warning: unused variable 't7'
lib/crc32.c:77:41: warning: unused variable 't6'
lib/crc32.c:77:27: warning: unused variable 't5'
lib/crc32.c:77:13: warning: unused variable 't4'
CC: linux-kernel@...r.kernel.org
Signed-off-by: Thiago Rafael Becker <trbecker@...ecker.org>
---
lib/crc32.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/lib/crc32.c b/lib/crc32.c
index b0d278f..61774b8 100644
--- a/lib/crc32.c
+++ b/lib/crc32.c
@@ -74,7 +74,9 @@ crc32_body(u32 crc, unsigned char const *buf, size_t len, const u32 (*tab)[256])
size_t i;
# endif
const u32 *t0=tab[0], *t1=tab[1], *t2=tab[2], *t3=tab[3];
+# if CRC_LE_BITS != 32
const u32 *t4 = tab[4], *t5 = tab[5], *t6 = tab[6], *t7 = tab[7];
+# endif
u32 q;
/* Align it */
--
1.7.10.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists