diff options
| author | Anatolij Gustschin <agust@denx.de> | 2012-04-27 04:38:06 +0000 | 
|---|---|---|
| committer | Anatolij Gustschin <agust@denx.de> | 2012-05-25 09:15:09 +0200 | 
| commit | de3b49c4dd5c9bf1b6bf9e91b86f58d7a83174d5 (patch) | |
| tree | cb0cbef62421b4afcaf1d3bfa8adeacebfd01063 /common/cmd_bmp.c | |
| parent | 3d02408665b1622ef50518637e36ac4c53750c08 (diff) | |
| download | olio-uboot-2014.01-de3b49c4dd5c9bf1b6bf9e91b86f58d7a83174d5.tar.xz olio-uboot-2014.01-de3b49c4dd5c9bf1b6bf9e91b86f58d7a83174d5.zip | |
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 <agust@denx.de>
Diffstat (limited to 'common/cmd_bmp.c')
| -rw-r--r-- | common/cmd_bmp.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/common/cmd_bmp.c b/common/cmd_bmp.c index 4c29fa34b..b8809e3bf 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; |