From: Anatolij Gustschin Date: Fri, 27 Apr 2012 04:38:06 +0000 (+0000) Subject: cmd_bmp.c: make bmp_display() usable by drivers or board code X-Git-Tag: v2012.07-rc1~39^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de3b49c4dd5c9bf1b6bf9e91b86f58d7a83174d5;p=kernel%2Fu-boot.git cmd_bmp.c: make bmp_display() usable by drivers or board code Currently bmp_display() is static and can not be used directly in the driver or board code. Export it for other users. Signed-off-by: Anatolij Gustschin --- diff --git a/common/cmd_bmp.c b/common/cmd_bmp.c index 4c29fa3..b8809e3 100644 --- a/common/cmd_bmp.c +++ b/common/cmd_bmp.c @@ -33,7 +33,6 @@ #include 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 3d9ef16..a10d8d0 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 /*