[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1209418850-19942-1-git-send-email-bert.wesarg@googlemail.com>
Date: Mon, 28 Apr 2008 23:40:50 +0200
From: Bert Wesarg <bert.wesarg@...glemail.com>
To: mingo@...e.hu
Cc: linux-kernel@...r.kernel.org, akpm@...ux-foundation.org,
Bert Wesarg <bert.wesarg@...glemail.com>,
Ravikiran Thirumalai <kiran@...lex86.org>
Subject: [PATCH] x86: fix return type of detect_vsmp_box() for !CONFIG_PCI
The return type for CONFIG_PCI is void, but for !CONFIG_PCI its int.
Fix this.
Signed-off-by: Bert Wesarg <bert.wesarg@...glemail.com>
Cc: Ravikiran Thirumalai <kiran@...lex86.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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists