diff options
author | Alessandro Rubini <rubini@gnudd.com> | 2009-07-19 17:52:27 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2009-07-25 23:13:51 +0200 |
commit | 6111722a9281c6e04a7304d502556afff6a5a1f8 (patch) | |
tree | 0d9b038682826849384028c445e6da69a254c25a /include/lcd.h | |
parent | f33b325af666b12eafa9ab235b2cd59832d6e51c (diff) | |
download | u-boot-6111722a9281c6e04a7304d502556afff6a5a1f8.tar.gz |
video: move extern declarations from C to headers
This moves some extern declaration from lcd.c to lcd.h, removing
unneeded ifdef around a pair of them. Additionally, since
gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
removed the static. The extra "#include <lcd.h>" in cmd_bmp.c is
added to ensure the header is consistent with the source.
This has been compile-tested on both ARM (at91 boards) and PowerPC
(HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
combinations.
Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
[agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/lcd.h b/include/lcd.h index f054cac05f..2de36ab7b7 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -43,6 +43,18 @@ extern void *lcd_console_address; /* Start of console buffer */ extern short console_col; extern short console_row; +extern struct vidinfo panel_info; + +extern void lcd_ctrl_init (void *lcdbase); +extern void lcd_enable (void); + +/* setcolreg used in 8bpp/16bpp; initcolregs used in monochrome */ +extern void lcd_setcolreg (ushort regno, + ushort red, ushort green, ushort blue); +extern void lcd_initcolregs (void); + +/* gunzip_bmp used if CONFIG_VIDEO_BMP_GZIP */ +extern struct bmp_image *gunzip_bmp(unsigned long addr, unsigned long *lenp); #if defined CONFIG_MPC823 /* |