提交 c0b0ba84 编写于 作者: S Sam Ravnborg 提交者: David S. Miller

sparc32: fix sparse warnings in smp_32.c

Fix following warnings:
smp_32.c:300:6: warning: symbol 'arch_cpu_pre_starting' was not declared. Should it be static?
smp_32.c:320:6: warning: symbol 'arch_cpu_pre_online' was not declared. Should it be static?
smp_32.c:347:6: warning: symbol 'sparc_start_secondary' was not declared. Should it be static?

Add missing static definition.

This left one warning:
   warning: symbol 'setup_profiling_timer' was not declared.

This is a global symbol that has no declaration in any global header.
Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 a3ee8faa
......@@ -297,7 +297,7 @@ int __cpu_up(unsigned int cpu, struct task_struct *tidle)
return ret;
}
void arch_cpu_pre_starting(void *arg)
static void arch_cpu_pre_starting(void *arg)
{
local_ops->cache_all();
local_ops->tlb_all();
......@@ -317,7 +317,7 @@ void arch_cpu_pre_starting(void *arg)
}
}
void arch_cpu_pre_online(void *arg)
static void arch_cpu_pre_online(void *arg)
{
unsigned int cpuid = hard_smp_processor_id();
......@@ -344,7 +344,7 @@ void arch_cpu_pre_online(void *arg)
}
}
void sparc_start_secondary(void *arg)
static void sparc_start_secondary(void *arg)
{
unsigned int cpu;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册