summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorPeng Fan <Peng.Fan@freescale.com>2015-07-01 12:51:41 +0800
committerYe Li <ye.li@nxp.com>2018-04-27 02:21:18 -0700
commitd855bc0b78bf03633be4ef4525ee1ad5e2fe68dd (patch)
tree4a6f5afa0c4bd0c8b6b11cb78ebc3cfd7666b951 /common
parentf56fdb7e6ba51eef3dd7b8c46948ecdad2e17c75 (diff)
MLK-11211 lcd: fix build warning
Fix build warning: common/lcd.c: In function 'lcd_clear': common/lcd.c:166:6: warning: variable 'bg_color' set but not used [-Wunused-but-set-variable] int bg_color; ^ common/lcd.c: In function 'lcd_setmem': common/lcd.c:296:2: warning: format '%d' expects argument of type 'int', but argument 2 has type 'u_long' [-Wformat=] debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col, ^ common/lcd.c:296:2: warning: format '%d' expects argument of type 'int', but argument 3 has type 'u_long' [-Wformat=] Signed-off-by: Peng Fan <Peng.Fan@freescale.com> (cherry picked from commit acfeb43685efb04423ce064c67228d15fa6d3da5) (cherry picked from commit 69a7c6f0877f4a984209f1be3e14ed5fe56928ad)
Diffstat (limited to 'common')
-rw-r--r--common/lcd.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/common/lcd.c b/common/lcd.c
index 66f4e66f37..07417ea322 100644
--- a/common/lcd.c
+++ b/common/lcd.c
@@ -166,7 +166,6 @@ int drv_lcd_init(void)
void lcd_clear(void)
{
- int bg_color;
char *s;
ulong addr;
static int do_splash = 1;
@@ -190,11 +189,9 @@ void lcd_clear(void)
#ifndef CONFIG_SYS_WHITE_ON_BLACK
lcd_setfgcolor(CONSOLE_COLOR_BLACK);
lcd_setbgcolor(CONSOLE_COLOR_WHITE);
- bg_color = CONSOLE_COLOR_WHITE;
#else
lcd_setfgcolor(CONSOLE_COLOR_WHITE);
lcd_setbgcolor(CONSOLE_COLOR_BLACK);
- bg_color = CONSOLE_COLOR_BLACK;
#endif /* CONFIG_SYS_WHITE_ON_BLACK */
#ifdef LCD_TEST_PATTERN
@@ -295,7 +292,7 @@ ulong lcd_setmem(ulong addr)
ulong size;
int line_length;
- debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
+ debug("LCD panel info: %lu x %lu, %d bit/pix\n", panel_info.vl_col,
panel_info.vl_row, NBITS(panel_info.vl_bpix));
size = lcd_get_size(&line_length);