video: Move bmp_display() prototype to video.h
authorSimon Glass <sjg@chromium.org>
Tue, 18 Oct 2022 13:41:14 +0000 (07:41 -0600)
committerAnatolij Gustschin <agust@denx.de>
Sun, 30 Oct 2022 19:07:16 +0000 (20:07 +0100)
The lcd.h header is about to be deleted, so move this prototype.

Signed-off-by: Simon Glass <sjg@chromium.org>
cmd/bmp.c
include/video.h

index 5a3c8dd..880edad 100644 (file)
--- 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
index 529f968..43f2e2c 100644 (file)
@@ -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