diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-05-05 19:48:30 (GMT) |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2017-05-15 18:55:13 (GMT) |
commit | 10ba6b333955b7be491f9dd8c1241309dfcb5c8b (patch) | |
tree | 0e7b524f391859ad53fb3a8741e449cd369a3743 /drivers | |
parent | 8517f64fe67f851eb128cc594666fb2615cde08d (diff) | |
download | u-boot-10ba6b333955b7be491f9dd8c1241309dfcb5c8b.tar.xz |
video: bmp: rename CONFIG_BMP_24BMP to CONFIG_BMP_24BPP
Due to a typo, the 24 bit-per-pixel configuration ends in 24BMP
instead of 24BPP. This change renames it throughout the source tree
for consistency and to make moving these options into Kconfig easier
and less error-prone.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/video_bmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/video_bmp.c b/drivers/video/video_bmp.c index 32a4e7f..f803067 100644 --- a/drivers/video/video_bmp.c +++ b/drivers/video/video_bmp.c @@ -316,7 +316,7 @@ int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y, } break; #endif /* CONFIG_BMP_16BPP */ -#if defined(CONFIG_BMP_24BMP) +#if defined(CONFIG_BMP_24BPP) case 24: for (i = 0; i < height; ++i) { for (j = 0; j < width; j++) { @@ -328,7 +328,7 @@ int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y, fb -= priv->line_length + width * (bpix / 8); } break; -#endif /* CONFIG_BMP_24BMP */ +#endif /* CONFIG_BMP_24BPP */ #if defined(CONFIG_BMP_32BPP) case 32: for (i = 0; i < height; ++i) { |