summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-10-18 16:41:14 +0300
committerAnatolij Gustschin <agust@denx.de>2022-10-30 22:07:16 +0300
commitf24404d85f2d226110a3fd9aa169f25f9f454e35 (patch)
treef0a19b3a035131f68898e45a0bd7257aaed354e2
parentba97899349a2a90e8799c79fdc1ab906bf439db4 (diff)
downloadu-boot-f24404d85f2d226110a3fd9aa169f25f9f454e35.tar.xz
video: Move bmp_display() prototype to video.h
The lcd.h header is about to be deleted, so move this prototype. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--cmd/bmp.c10
-rw-r--r--include/video.h9
2 files changed, 9 insertions, 10 deletions
diff --git a/cmd/bmp.c b/cmd/bmp.c
index 5a3c8ddf8c..880edad889 100644
--- a/cmd/bmp.c
+++ b/cmd/bmp.c
@@ -221,16 +221,6 @@ static int bmp_info(ulong addr)
return(0);
}
-/*
- * Subroutine: bmp_display
- *
- * Description: Display bmp file located in memory
- *
- * Inputs: addr address of the bmp file
- *
- * Return: None
- *
- */
int bmp_display(ulong addr, int x, int y)
{
#ifdef CONFIG_DM_VIDEO
diff --git a/include/video.h b/include/video.h
index 529f968518..43f2e2c02f 100644
--- a/include/video.h
+++ b/include/video.h
@@ -346,4 +346,13 @@ bool video_is_active(void);
*/
void *video_get_u_boot_logo(void);
+/*
+ * bmp_display() - Display BMP (bitmap) data located in memory
+ *
+ * @addr: address of the bmp data
+ * @x: Position of bitmap from the left side, in pixels
+ * @y: Position of bitmap from the top, in pixels
+ */
+int bmp_display(ulong addr, int x, int y);
+
#endif