From: Lothar Waßmann Date: Wed, 3 Feb 2016 06:05:48 +0000 (+0100) Subject: lcd: fix typo CONFIG_BMP_24BMP -> CONFIG_BMP_24BPP X-Git-Tag: KARO-TX6-2016-03-10~7 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=282bfa2abb4c7fce68c538d43083f405d7b7ec51;hp=7e8b48898a6b2f9ccaa8163be6102da4f6c0b3c0 lcd: fix typo CONFIG_BMP_24BMP -> CONFIG_BMP_24BPP --- diff --git a/common/lcd.c b/common/lcd.c index 23c502106c..d62e292412 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -730,7 +730,7 @@ int lcd_display_bitmap(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++) {