Messages in this thread Patch in this message |  | | From | Rusty Trivial Russell <> | Subject | [TRIVIAL] Simplify vt.c ifdef for sys_ioperm | Date | Tue, 20 Aug 2002 19:06:59 +1000 |
| |
[ Looks right. Marcelo pelase apply. ] From: Milton Miller <miltonm@bga.com>
Several architectures defined sys_ioperm but don't actually implement it:
arch/m68k/kernel/sys_m68k.c: sys_ioperm return -ENOSYS arch/sparc/kernel/setup.c: sys_ioperm return -EIO arch/ppc/kernel/syscalls.c: sys_ioperm printk(KERN_ERR ...) return -EIO
(vs current 2.4 bk -- 2.4.20-pre2+)
===== drivers/char/vt.c 1.10 vs edited =====
--- trivial-2.4.20-pre4/drivers/char/vt.c.orig 2002-08-20 18:01:05.000000000 +1000 +++ trivial-2.4.20-pre4/drivers/char/vt.c 2002-08-20 18:01:05.000000000 +1000 @@ -481,7 +481,7 @@ ucval = keyboard_type; goto setchar; -#if defined(__i386__) || defined(__mc68000__) || defined(__ppc__) || defined(__sparc__) +#if defined(CONFIG_X86) /* * These cannot be implemented on any machine that implements * ioperm() in user level (such as Alpha PCs). -- Don't blame me: the Monkey is driving File: Milton Miller <miltonm@bga.com>: [PATCH] Simplify vt.c ifdef for sys_ioperm - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |