[PATCH] x86: fix return type of detect_vsmp_box() for !CONFIG_PCI

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Bert Wesarg
Date: Monday, April 28, 2008 - 2:40 pm

The return type for CONFIG_PCI is void, but for !CONFIG_PCI its int.
Fix this.

Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Cc: Ravikiran Thirumalai <kiran@scalex86.org>
---
 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 caf2a26..ba8c0b7 100644
--- a/arch/x86/kernel/vsmp_64.c
+++ b/arch/x86/kernel/vsmp_64.c
@@ -133,7 +133,7 @@ int is_vsmp_box(void)
 	}
 }
 #else
-static int __init detect_vsmp_box(void)
+static void __init detect_vsmp_box(void)
 {
 }
 int is_vsmp_box(void)
-- 
1.5.5.GIT

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] x86: fix return type of detect_vsmp_box() for !CON ..., Bert Wesarg, (Mon Apr 28, 2:40 pm)