summaryrefslogtreecommitdiff
path: root/board/st/u8500/u8500.c
diff options
context:
space:
mode:
authorTorbjorn Svensson <torbjorn.x.svensson@stericsson.com>2010-12-07 15:33:29 +0100
committerMichael BRANDT <michael.brandt@stericsson.com>2010-12-13 15:41:15 +0100
commita7d22caa0320025442cb8c275bd70d034f5eb308 (patch)
treed416178a8e4450038514069f793961dfe84219f1 /board/st/u8500/u8500.c
parent307a253778d0918a8e0f10c2ea9a350450e37677 (diff)
U8500: Changes to use a bmp file as splash image
This change makes it possible to use a bitmap file (.bmp) as the splash image. This also removes the need to specify width and height of the splash image. RLE compression, 1 and 4 bit formats are not supported. ST-Ericsson ID: AP281072 Change-Id: I7c9ae953ad0440b665bb03ed1b9bbf43bab04e91 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/9406 Tested-by: Torbjorn SVENSSON <torbjorn.x.svensson@stericsson.com> Reviewed-by: QATOOLS Reviewed-by: Jimmy RUBIN <jimmy.rubin@stericsson.com> Reviewed-by: Michael BRANDT <michael.brandt@stericsson.com>
Diffstat (limited to 'board/st/u8500/u8500.c')
-rw-r--r--board/st/u8500/u8500.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/board/st/u8500/u8500.c b/board/st/u8500/u8500.c
index a23056c55..307b25fa4 100644
--- a/board/st/u8500/u8500.c
+++ b/board/st/u8500/u8500.c
@@ -137,8 +137,6 @@ static int mcde_error;
*/
static volatile int data_init_flag = -1; /* -1 to get it into .data section */
-static void config_gpio(void);
-
/* Get hold of gd pointer */
DECLARE_GLOBAL_DATA_PTR;
@@ -233,14 +231,10 @@ static int dss_init(void)
printf("Only HREF+ or V2 is supported\n");
goto mcde_error;
}
- if (mcde_startup()) {
+ if (mcde_splash_image()) {
printf("startup failed\n");
goto mcde_error;
}
- if (mcde_display_image()) {
- printf("display_image failed\n");
- goto mcde_error;
- }
printf("ready\n");
return 0;