diff options
author | Daniel Axtens <dja@axtens.net> | 2016-05-18 04:16:49 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-06-16 15:23:11 +0300 |
commit | 34852ed5511ec5d07897f22d5607061a248fc82f (patch) | |
tree | 617e23d39a791a073a7668700067dd75f54ff58d /arch/powerpc/kernel/crash.c | |
parent | 1d1451655bad9a6a5fd7a42de68420069ce3bee3 (diff) | |
download | linux-34852ed5511ec5d07897f22d5607061a248fc82f.tar.xz |
powerpc/sparse: make some things static
This is just a smattering of things picked up by sparse that should
be made static.
Signed-off-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/crash.c')
-rw-r--r-- | arch/powerpc/kernel/crash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c index 3dc1fade0b28..888bdf198c3e 100644 --- a/arch/powerpc/kernel/crash.c +++ b/arch/powerpc/kernel/crash.c @@ -65,7 +65,7 @@ static int handle_fault(struct pt_regs *regs) #ifdef CONFIG_SMP static atomic_t cpus_in_crash; -void crash_ipi_callback(struct pt_regs *regs) +static void crash_ipi_callback(struct pt_regs *regs) { static cpumask_t cpus_state_saved = CPU_MASK_NONE; |