diff options
author | Alexander van Heukelum <heukelum@mailshack.com> | 2008-04-16 12:45:35 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-29 07:45:24 -0400 |
commit | 8008abbd87644c84f93a7a86fec88f1e14031901 (patch) | |
tree | 86cc50fbc475585e24f693495c553c94a7341220 | |
parent | e686d34156ef0e56b2ebec505b809018bc0dc73b (diff) |
x86: fix warning in "x86: clean up vSMP detection"
The function detect_vsmp_box is a void function in the PCI case.
Change the !PCI stub to void too.
Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/x86/kernel/vsmp_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/vsmp_64.c b/arch/x86/kernel/vsmp_64.c index caf2a26f5cfd..ba8c0b75ab0a 100644 --- a/arch/x86/kernel/vsmp_64.c +++ b/arch/x86/kernel/vsmp_64.c | |||
@@ -133,7 +133,7 @@ int is_vsmp_box(void) | |||
133 | } | 133 | } |
134 | } | 134 | } |
135 | #else | 135 | #else |
136 | static int __init detect_vsmp_box(void) | 136 | static void __init detect_vsmp_box(void) |
137 | { | 137 | { |
138 | } | 138 | } |
139 | int is_vsmp_box(void) | 139 | int is_vsmp_box(void) |