Re: [PATCH v2 2/2] video: bmp: Fix video_display_rle8_bitmap()

2019-12-10 Thread Anatolij Gustschin
On Wed, 20 Nov 2019 14:11:16 +0100 Patrice Chotard patrice.chot...@st.com wrote: ... > Changes in v2: None > > drivers/video/video_bmp.c | 8 +++- > 1 file changed, 3 insertions(+), 5 deletions(-) Applied to u-boot-video/master, thanks! -- Anatolij

[U-Boot] [PATCH v2 2/2] video: bmp: Fix video_display_rle8_bitmap()

2019-11-20 Thread Patrice Chotard
In case the BMP size is bigger than the frame buffer, don't use the BMP's width and height in video_display_rle8_bitmap, but the one's checked in video_bmp_display() as parameters to video_display_rle8_bitmap(). Signed-off-by: Patrice Chotard CC: Yannick Fertré --- Changes in v2: None drive