diff options
author | Simon Glass | 2022-10-18 07:41:14 -0600 |
---|---|---|
committer | Anatolij Gustschin | 2022-10-30 20:07:16 +0100 |
commit | f24404d85f2d226110a3fd9aa169f25f9f454e35 (patch) | |
tree | f0a19b3a035131f68898e45a0bd7257aaed354e2 /cmd/bmp.c | |
parent | ba97899349a2a90e8799c79fdc1ab906bf439db4 (diff) |
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>
Diffstat (limited to 'cmd/bmp.c')
-rw-r--r-- | cmd/bmp.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cmd/bmp.c b/cmd/bmp.c index 5a3c8ddf8c8..880edad8898 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 |