| Kernel v2.4.13 /drivers/video/fbcon-hga.c |
|---|
 2.4.13
 drivers
 video
 fbcon-hga.c
diff -u --recursive --new-file v2.4.12/linux/drivers/video/fbcon-hga.c linux/drivers/video/fbcon-hga.c
--- v2.4.12/linux/drivers/video/fbcon-hga.c Sun Sep 23 11:41:00 2001
+++ linux/drivers/video/fbcon-hga.c Mon Oct 15 13:47:13 2001
@@ -148,9 +148,10 @@
u8 d;
u16 c;
- bold = attr_bold(p,scr_readw(s));
- revs = attr_reverse(p,scr_readw(s));
- underl = attr_underline(p,scr_readw(s));
+ c = scr_readw(s);
+ bold = attr_bold(p, c);
+ revs = attr_reverse(p, c);
+ underl = attr_underline(p, c);
y0 = yy*fontheight(p);
while (count--) {
|