From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jens Scharsig Date: Mon, 27 Jul 2009 15:28:42 +0200 Subject: [U-Boot] [Patch] Fix compiler warning vcxk Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de My new video driver vcxk produce a compiler warning. I'm sorry about this. This patch will * FIX: bus_vcxk.c:383: warning: unused variable 'lineptr' Signed-off-by: Jens Scharsig --- diff --git a/drivers/video/bus_vcxk.c b/drivers/video/bus_vcxk.c index b3b53e1..7726bb3 100644 --- a/drivers/video/bus_vcxk.c +++ b/drivers/video/bus_vcxk.c @@ -380,7 +380,6 @@ int vcxk_display_bitmap(ulong addr, int x, int y) unsigned long c_width; unsigned long c_height; unsigned char *dataptr; - unsigned char *lineptr; bmp = (bmp_image_t *) addr; if ((bmp->header.signature[0] == 'B') &&