diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-18 06:46:08 -0600 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-10-30 20:07:16 +0100 |
commit | e65500338427b64e83a59432242a1ef295dd95f0 (patch) | |
tree | 596cfa2c659a73eb89dfa02983a8b08f6d73d9f6 /drivers/video/Kconfig | |
parent | 4adc28ebc6b2fb9acc6abbb15186de528d502ef7 (diff) | |
download | u-boot-e65500338427b64e83a59432242a1ef295dd95f0.tar.gz u-boot-e65500338427b64e83a59432242a1ef295dd95f0.tar.bz2 u-boot-e65500338427b64e83a59432242a1ef295dd95f0.zip |
video: Rename CONFIG_SYS_VIDEO_LOGO_MAX_SIZE
This option should not have the SYS_ in it. Drop it so it fits in with the
other video options.
Also simplify the alignment code in gunzip_bmp(), since malloc() always
returns a 32-bit-aligned pointer.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 3e933ed76c..d160271abe 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -925,6 +925,9 @@ config VIDEO_BMP_GZIP images, gzipped BMP images can be displayed via the splashscreen support or the bmp command. +config VIDEO_LOGO_MAX_SIZE + bool "Maximum size of the bitmap logo in bytes" + config VIDEO_BMP_RLE8 bool "Run length encoded BMP image (RLE8) support" depends on DM_VIDEO |