Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers/video/console/fbcon_cw.c: fix compiler warning in cw_update_attr

With make W=1 we get

drivers/video/console/fbcon_cw.c: In function `cw_update_attr':
drivers/video/console/fbcon_cw.c:30:8: warning: variable `t' set but not used [-Wunused-but-set-variable]

fixed by removing as since its used nowhere

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Devendra Naga and committed by
Linus Torvalds
6cd472d3 86fa05e0

+1 -2
+1 -2
drivers/video/console/fbcon_cw.c
··· 27 27 { 28 28 int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2; 29 29 int width = (vc->vc_font.height + 7) >> 3; 30 - u8 c, t = 0, msk = ~(0xff >> offset); 30 + u8 c, msk = ~(0xff >> offset); 31 31 32 32 for (i = 0; i < vc->vc_font.width; i++) { 33 33 for (j = 0; j < width; j++) { ··· 40 40 c = ~c; 41 41 src++; 42 42 *dst++ = c; 43 - t = c; 44 43 } 45 44 } 46 45 }