From: Stephen Rothwell Date: Tue, 2 Jun 2009 18:15:33 +0000 (+0000) Subject: powerpc/xmon: Remove unused variable in xmon.c X-Git-Tag: upstream/snapshot3+hdmi~18388^2~78 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d1386d517e2b9b0de994cc47b1e490db7972a2a;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git powerpc/xmon: Remove unused variable in xmon.c Gets rid of this warning: arch/powerpc/xmon/xmon.c: In function 'dump_log_buf': arch/powerpc/xmon/xmon.c:2133: warning: unused variable 'i' Signed-off-by: Stephen Rothwell Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 08121d3..e1f33a8 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c @@ -2130,7 +2130,7 @@ void dump_log_buf(void) { const unsigned long size = 128; - unsigned long i, end, addr; + unsigned long end, addr; unsigned char buf[size + 1]; addr = 0;