diff options
author | Simon Glass | 2022-10-06 08:36:09 -0600 |
---|---|---|
committer | Anatolij Gustschin | 2022-10-30 20:01:40 +0100 |
commit | 0d3890188d6bcaf7172678d2e5e803035e85dc8d (patch) | |
tree | c1c4b7b8356e3e92a67703ddec6be5120479d54a /include/video.h | |
parent | 50d562c01ff0a9f500ed9821a74e841d6f6dc133 (diff) |
video: Add function to obtain the U-Boot logo
It is useful to show the logo from other code, coming in a later feature.
Add a function to obtain it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/video.h')
-rw-r--r-- | include/video.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/video.h b/include/video.h index 4c216d851b6..2e68dd717ef 100644 --- a/include/video.h +++ b/include/video.h @@ -319,4 +319,11 @@ static inline int video_sync_copy_all(struct udevice *dev) */ bool video_is_active(void); +/** + * video_get_u_boot_logo() - Get a pointer to the U-Boot logo + * + * Returns: Pointer to logo + */ +void *video_get_u_boot_logo(void); + #endif |