patch-2.2.3 linux/drivers/video/promcon.c
Next file: linux/drivers/video/q40fb.c
Previous file: linux/drivers/video/pm2fb.h
Back to the patch index
Back to the overall index
- Lines: 72
- Date:
Thu Feb 25 10:02:12 1999
- Orig file:
v2.2.2/linux/drivers/video/promcon.c
- Orig date:
Mon Oct 5 13:13:42 1998
diff -u --recursive --new-file v2.2.2/linux/drivers/video/promcon.c linux/drivers/video/promcon.c
@@ -1,4 +1,4 @@
-/* $Id: promcon.c,v 1.12 1998/08/23 20:19:01 mj Exp $
+/* $Id: promcon.c,v 1.13 1999/01/19 09:56:46 jj Exp $
* Console driver utilizing PROM sun terminal emulation
*
* Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
@@ -230,7 +230,7 @@
int count, int y, int x)
{
unsigned char buf[256], *b = buf;
- unsigned short attr = *s;
+ unsigned short attr = scr_readw(s);
unsigned char save;
int i, last = 0;
@@ -256,9 +256,9 @@
}
if (inverted(attr))
- b += sprintf(b, "\033[7m%c\033[m", *s++);
+ b += sprintf(b, "\033[7m%c\033[m", scr_readw(s++));
else
- b += sprintf(b, "%c", *s++);
+ b += sprintf(b, "%c", scr_readw(s++));
strcpy(b, "\b\033[@");
b += 4;
@@ -295,14 +295,14 @@
promcon_puts(buf, b - buf);
b = buf;
}
- *b++ = *s++;
+ *b++ = scr_readw(s++);
}
px += count;
if (last) {
- save = *s++;
- b += sprintf(b, "%c\b\033[@%c", *s++, save);
+ save = scr_readw(s++);
+ b += sprintf(b, "%c\b\033[@%c", scr_readw(s++), save);
px++;
}
@@ -318,11 +318,12 @@
static void
promcon_putc(struct vc_data *conp, int c, int y, int x)
{
- unsigned short s = c;
+ unsigned short s;
if (console_blanked)
return;
+ scr_writew(c, &s);
promcon_putcs(conp, &s, 1, y, x);
}
@@ -591,8 +592,11 @@
__initfunc(void prom_con_init(void))
{
+#ifdef CONFIG_DUMMY_CONSOLE
if (conswitchp == &dummy_con)
take_over_console(&prom_con, 0, MAX_NR_CONSOLES-1, 1);
- else if (conswitchp == &prom_con)
+ else
+#endif
+ if (conswitchp == &prom_con)
promcon_init_unimap(vc_cons[fg_console].d);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)