summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorH. Peter Anvin2014-08-01 23:47:56 +0200
committerH. Peter Anvin2014-08-02 00:09:45 +0200
commit5e3bf215f4f2efc0af89e6dbc5da789744aeb5d7 (patch)
tree57e7182f1a1bc71d941bbee7bdf00fe8616e63c7 /arch/x86
parentx86, apic: Remove enable_apic_mode callback (diff)
downloadkernel-qcow2-linux-5e3bf215f4f2efc0af89e6dbc5da789744aeb5d7.tar.gz
kernel-qcow2-linux-5e3bf215f4f2efc0af89e6dbc5da789744aeb5d7.tar.xz
kernel-qcow2-linux-5e3bf215f4f2efc0af89e6dbc5da789744aeb5d7.zip
x86/apic/vsmp: Make is_vsmp_box() static
Since checkin 411cf9ee2946 x86, vsmp: Remove is_vsmp_box() from apic_is_clustered_box() ... is_vsmp_box() is only used in vsmp_64.c and does not have any header file declaring it, so make it explicitly static. Reported-by: kbuild test robot <fengguang.wu@intel.com> Cc: Shai Fultheim <shai@scalemp.com> Cc: Oren Twaig <oren@scalemp.com> Link: http://lkml.kernel.org/r/1404036068-11674-1-git-send-email-oren@scalemp.com Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/vsmp_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/vsmp_64.c b/arch/x86/kernel/vsmp_64.c
index b99b9ad8540c..ee22c1d93ae5 100644
--- a/arch/x86/kernel/vsmp_64.c
+++ b/arch/x86/kernel/vsmp_64.c
@@ -152,7 +152,7 @@ static void __init detect_vsmp_box(void)
is_vsmp = 1;
}
-int is_vsmp_box(void)
+static int is_vsmp_box(void)
{
if (is_vsmp != -1)
return is_vsmp;
@@ -166,7 +166,7 @@ int is_vsmp_box(void)
static void __init detect_vsmp_box(void)
{
}
-int is_vsmp_box(void)
+static int is_vsmp_box(void)
{
return 0;
}