Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16622a8e authored by David Lechner's avatar David Lechner Committed by Bartlomiej Zolnierkiewicz
Browse files

fbdev: fix 1bpp logo for unusual width



This check is needed in the case where the width of the framebuffer
is not a multiple of 8 pixels. For example, LEGO MINDSTORMS EV3 has
a 178x128 1bpp display.

Signed-off-by: default avatarDavid Lechner <david@lechnology.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent b0d8e409
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -316,7 +316,7 @@ static void fb_set_logo(struct fb_info *info,
		for (i = 0; i < logo->height; i++) {
			for (j = 0; j < logo->width; src++) {
				d = *src ^ xor;
				for (k = 7; k >= 0; k--) {
				for (k = 7; k >= 0 && j < logo->width; k--) {
					*dst++ = ((d >> k) & 1) ? fg : 0;
					j++;
				}