X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=common%2Flcd.c;h=4b3d7dcd34b82bf6c0dce9409b557723372c854a;hb=75ff0578515665a1b712275deb73be29e5ad8773;hp=c3ff9599ed89cc0e03d60d8ff9a63f44c0e5afd1;hpb=1fdafb2e3dfecdc4129a8062ad25b1adb32b0efb;p=u-boot diff --git a/common/lcd.c b/common/lcd.c index c3ff9599ed..4b3d7dcd34 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -578,7 +578,7 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y) unsigned long pwidth = panel_info.vl_col; unsigned colors, bpix, bmp_bpix; int hdr_size; - struct bmp_color_table_entry *palette = bmp->color_table; + struct bmp_color_table_entry *palette; if (!bmp || !(bmp->header.signature[0] == 'B' && bmp->header.signature[1] == 'M')) { @@ -587,6 +587,7 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y) return 1; } + palette = bmp->color_table; width = get_unaligned_le32(&bmp->header.width); height = get_unaligned_le32(&bmp->header.height); bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);