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/os-Linux | |
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/os-Linux')
-rw-r--r-- | arch/um/os-Linux/start_up.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/um/os-Linux/start_up.c b/arch/um/os-Linux/start_up.c index c6cf648a51df..b07887c36bb0 100644 --- a/arch/um/os-Linux/start_up.c +++ b/arch/um/os-Linux/start_up.c | |||
@@ -466,7 +466,7 @@ static inline void check_skas3_proc_mm(void) | |||
466 | else non_fatal("found\n"); | 466 | else non_fatal("found\n"); |
467 | } | 467 | } |
468 | 468 | ||
469 | int can_do_skas(void) | 469 | void can_do_skas(void) |
470 | { | 470 | { |
471 | non_fatal("Checking for the skas3 patch in the host:\n"); | 471 | non_fatal("Checking for the skas3 patch in the host:\n"); |
472 | 472 | ||
@@ -476,8 +476,6 @@ int can_do_skas(void) | |||
476 | 476 | ||
477 | if (!proc_mm || !ptrace_faultinfo || !ptrace_ldt) | 477 | if (!proc_mm || !ptrace_faultinfo || !ptrace_ldt) |
478 | skas_needs_stub = 1; | 478 | skas_needs_stub = 1; |
479 | |||
480 | return 1; | ||
481 | } | 479 | } |
482 | 480 | ||
483 | int __init parse_iomem(char *str, int *add) | 481 | int __init parse_iomem(char *str, int *add) |