diff options
author | Hannes Petermaier <oe5hpm@oevsv.at> | 2014-03-07 18:45:20 +0100 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2014-08-10 15:25:19 +0200 |
commit | 8d9eaafdd12991b92c265ae6380972bc3afea41c (patch) | |
tree | 4311337a9d5f08e898f9c125c7fb24cef42bee37 /include/lcd.h | |
parent | 57d76a89b0f0afc1bb622c5c0b8d10dfd34f28b5 (diff) | |
download | u-boot-imx-8d9eaafdd12991b92c265ae6380972bc3afea41c.zip u-boot-imx-8d9eaafdd12991b92c265ae6380972bc3afea41c.tar.gz u-boot-imx-8d9eaafdd12991b92c265ae6380972bc3afea41c.tar.bz2 |
lcd: cleanup unused functions
This patch removes following two functions:
- lcd_getbgcolor(...)
not used somewhere outside lcd.c, internally we use now the global
variable lcd_color_bg (was return value of function before)
- lcd_getfgcolor(...)
not used in any place of u-boot
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
[agust: rebased]
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/lcd.h b/include/lcd.h index 88684ca..ea5860c 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -26,8 +26,6 @@ void lcd_enable(void); void lcd_setcolreg(ushort regno, ushort red, ushort green, ushort blue); void lcd_initcolregs(void); -int lcd_getfgcolor(void); - /* gunzip_bmp used if CONFIG_VIDEO_BMP_GZIP */ struct bmp_image *gunzip_bmp(unsigned long addr, unsigned long *lenp, void **alloc_addr); |