Messages in this thread Patch in this message |  | | | Date | Thu, 22 Jan 2004 21:11:55 +1300 | | From | Nigel Cunningham <> | | Subject | PATCH: Revised console patch (support for > 127 chars) |
| |
Hi.
Here's a revised version of the console patch posted last week.
Regards,
Nigel
diff -ruN linux-2.6.1/drivers/char/vt.c software-suspend-linux-2.6.1-rev3/drivers/char/vt.c --- linux-2.6.1/drivers/char/vt.c 2004-01-13 16:22:58.000000000 +1300 +++ software-suspend-linux-2.6.1-rev3/drivers/char/vt.c 2004-01-22 17:39:08.000000000 +1300 @@ -2996,13 +2996,13 @@ return screenpos(currcons, 2 * w_offset, viewed); } -void getconsxy(int currcons, char *p) +void getconsxy(int currcons, unsigned char *p) { p[0] = x; p[1] = y; } -void putconsxy(int currcons, char *p) +void putconsxy(int currcons, unsigned char *p) { gotoxy(currcons, p[0], p[1]); set_cursor(currcons); diff -ruN linux-2.6.1/include/linux/selection.h software-suspend-linux-2.6.1-rev3/include/linux/selection.h --- linux-2.6.1/include/linux/selection.h 2004-01-13 16:21:06.000000000 +1300 +++ software-suspend-linux-2.6.1-rev3/include/linux/selection.h 2004-01-22 17:39:09.000000000 +1300 @@ -36,8 +36,8 @@ extern void complement_pos(int currcons, int offset); extern void invert_screen(int currcons, int offset, int count, int shift); -extern void getconsxy(int currcons, char *p); -extern void putconsxy(int currcons, char *p); +extern void getconsxy(int currcons, unsigned char *p); +extern void putconsxy(int currcons, unsigned char *p); extern u16 vcs_scr_readw(int currcons, const u16 *org); extern void vcs_scr_writew(int currcons, u16 val, u16 *org);
-- My work on Software Suspend is graciously brought to you by LinuxFund.org. [unhandled content-type:application/pgp-signature] |  |