|
From: Geert U. <ge...@li...> - 2002-07-24 15:17:47
|
### Comments for changeset
The penguin logo resides in normal RAM, not in frame buffer memory, so we must
not use fb_readb()
### Comments for drivers/video/fbcon.c
The penguin logo resides in normal RAM, not in frame buffer memory, so we must
not use fb_readb()
--- linux-2.4.19-rc3/drivers/video/fbcon.c Fri Feb 22 16:28:32 2002
+++ linux-m68k-2.4.19-rc3/drivers/video/fbcon.c Mon Jul 22 21:45:01 2002
@@ -2417,7 +2417,7 @@
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;
}
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li...
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
|