diff options
author | Karol Swietlicki <magotari@gmail.com> | 2008-02-04 22:30:50 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 09:44:26 -0800 |
commit | 6b7e967484f4197d799e14b844b78118e93192c6 (patch) | |
tree | 61896d643c3a4b302d709a02aa0b7c140c2d8805 /arch/um/include/os.h | |
parent | 291248fd6e371bcbfb8a77689c5d741a1527488f (diff) | |
download | op-kernel-dev-6b7e967484f4197d799e14b844b78118e93192c6.zip op-kernel-dev-6b7e967484f4197d799e14b844b78118e93192c6.tar.gz |
uml: convert functions to void
This patch changes a few functions into returning void. The return values
were not used anyway, so I think it should not be a problem. Also removed a
little leftover bit from TT mode.
Signed-off-by: Karol Swietlicki <magotari@gmail.com>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/include/os.h')
-rw-r--r-- | arch/um/include/os.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 55ca073..69c0d4a 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h @@ -167,14 +167,10 @@ extern int os_fchange_dir(int fd); /* start_up.c */ extern void os_early_checks(void); -extern int can_do_skas(void); +extern void can_do_skas(void); extern void os_check_bugs(void); extern void check_host_supports_tls(int *supports_tls, int *tls_min); -/* Make sure they are clear when running in TT mode. Required by - * SEGV_MAYBE_FIXABLE */ -#define clear_can_do_skas() do { ptrace_faultinfo = proc_mm = 0; } while (0) - /* mem.c */ extern int create_mem_file(unsigned long long len); |