Commit 2f1e3498 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] M68k update (part 16)

The penguin logo resides in normal RAM, not in frame buffer memory, so we must
not use fb_readb()
parent e3ee3a5b
......@@ -2401,7 +2401,7 @@ static int __init fbcon_show_logo( void )
else
dst = fb + y1*line + x/8;
for( x1 = 0; x1 < LOGO_LINE; ++x1 )
fb_writeb(fb_readb(src++) ^ inverse, dst++);
fb_writeb(*src++ ^ inverse, dst++);
}
done = 1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment