diff options
Diffstat (limited to 'common/lcd.c')
-rw-r--r-- | common/lcd.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/common/lcd.c b/common/lcd.c index 2996e0deb4..156233f7cb 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -117,7 +117,6 @@ static int lcd_init(void *lcdbase); static void *lcd_logo(void); -static int lcd_getbgcolor(void); static void lcd_setfgcolor(int color); static void lcd_setbgcolor(int color); @@ -497,7 +496,7 @@ void lcd_clear(void) /* set framebuffer to background color */ #if (LCD_BPP != LCD_COLOR32) memset((char *)lcd_base, - COLOR_MASK(lcd_getbgcolor()), + COLOR_MASK(lcd_color_bg), lcd_line_length * panel_info.vl_row); #else u32 *ppix = lcd_base; @@ -615,20 +614,6 @@ static void lcd_setbgcolor(int color) lcd_color_bg = color; } -/*----------------------------------------------------------------------*/ - -int lcd_getfgcolor(void) -{ - return lcd_color_fg; -} - -/*----------------------------------------------------------------------*/ - -static int lcd_getbgcolor(void) -{ - return lcd_color_bg; -} - /************************************************************************/ /* ** Chipset depending Bitmap / Logo stuff... */ /************************************************************************/ |