summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/cmd_bmp.c3
-rw-r--r--include/lcd.h1
2 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_bmp.c b/common/cmd_bmp.c
index 4c29fa34ba..b8809e3bf5 100644
--- a/common/cmd_bmp.c
+++ b/common/cmd_bmp.c
@@ -33,7 +33,6 @@
#include <malloc.h>
static int bmp_info (ulong addr);
-static int bmp_display (ulong addr, int x, int y);
/*
* Allocate and decompress a BMP image using gunzip().
@@ -221,7 +220,7 @@ static int bmp_info(ulong addr)
* Return: None
*
*/
-static int bmp_display(ulong addr, int x, int y)
+int bmp_display(ulong addr, int x, int y)
{
int ret;
bmp_image_t *bmp = (bmp_image_t *)addr;
diff --git a/include/lcd.h b/include/lcd.h
index 3d9ef16710..a10d8d0265 100644
--- a/include/lcd.h
+++ b/include/lcd.h
@@ -55,6 +55,7 @@ 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);
+extern int bmp_display(ulong addr, int x, int y);
#if defined CONFIG_MPC823
/*
OpenPOWER on IntegriCloud