diff options
author | Karol Swietlicki <magotari@gmail.com> | 2008-02-05 01:30:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:26 -0500 |
commit | 6b7e967484f4197d799e14b844b78118e93192c6 (patch) | |
tree | 61896d643c3a4b302d709a02aa0b7c140c2d8805 /arch/um/include | |
parent | 291248fd6e371bcbfb8a77689c5d741a1527488f (diff) |
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')
-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 55ca073589dc..69c0d4ad0e52 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h | |||
@@ -167,14 +167,10 @@ extern int os_fchange_dir(int fd); | |||
167 | 167 | ||
168 | /* start_up.c */ | 168 | /* start_up.c */ |
169 | extern void os_early_checks(void); | 169 | extern void os_early_checks(void); |
170 | extern int can_do_skas(void); | 170 | extern void can_do_skas(void); |
171 | extern void os_check_bugs(void); | 171 | extern void os_check_bugs(void); |
172 | extern void check_host_supports_tls(int *supports_tls, int *tls_min); | 172 | extern void check_host_supports_tls(int *supports_tls, int *tls_min); |
173 | 173 | ||
174 | /* Make sure they are clear when running in TT mode. Required by | ||
175 | * SEGV_MAYBE_FIXABLE */ | ||
176 | #define clear_can_do_skas() do { ptrace_faultinfo = proc_mm = 0; } while (0) | ||
177 | |||
178 | /* mem.c */ | 174 | /* mem.c */ |
179 | extern int create_mem_file(unsigned long long len); | 175 | extern int create_mem_file(unsigned long long len); |
180 | 176 | ||