From: Devendra Naga Date: Mon, 29 Apr 2013 22:05:31 +0000 (-0700) Subject: drivers/video/console/fbcon_cw.c: fix compiler warning in cw_update_attr X-Git-Tag: v3.10-rc1~183^2~139 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6cd472d3d2a9cace26eae924fe95ec21dc4a0502;p=platform%2Fupstream%2Fkernel-adaptation-pc.git 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 Cc: Florian Tobias Schandinat Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/console/fbcon_cw.c b/drivers/video/console/fbcon_cw.c index 6a73782..a93670e 100644 --- a/drivers/video/console/fbcon_cw.c +++ b/drivers/video/console/fbcon_cw.c @@ -27,7 +27,7 @@ static void cw_update_attr(u8 *dst, u8 *src, int attribute, { int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2; int width = (vc->vc_font.height + 7) >> 3; - u8 c, t = 0, msk = ~(0xff >> offset); + u8 c, msk = ~(0xff >> offset); for (i = 0; i < vc->vc_font.width; i++) { for (j = 0; j < width; j++) { @@ -40,7 +40,6 @@ static void cw_update_attr(u8 *dst, u8 *src, int attribute, c = ~c; src++; *dst++ = c; - t = c; } } }