diff mbox

[RESEND] ARM: sunxi: make sun6i SMP ops static

Message ID 1416095618-2900-1-git-send-email-emilio@elopez.com.ar (mailing list archive)
State New, archived
Headers show

Commit Message

Emilio López Nov. 15, 2014, 11:53 p.m. UTC
The sun6i SMP ops are currently not marked as static, as reported by
sparse. Let's mark it as such.

Signed-off-by: Emilio López <emilio@elopez.com.ar>
---

Here's an oldish patch that never made it to mainline. I rediscovered it
today while I was cleaning up stuff and running a sparse build of -rc4.

Cheers!

Emilio

 arch/arm/mach-sunxi/platsmp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Maxime Ripard Nov. 16, 2014, 10:02 a.m. UTC | #1
On Sat, Nov 15, 2014 at 08:53:38PM -0300, Emilio López wrote:
> The sun6i SMP ops are currently not marked as static, as reported by
> sparse. Let's mark it as such.
> 
> Signed-off-by: Emilio López <emilio@elopez.com.ar>
> ---
> 
> Here's an oldish patch that never made it to mainline. I rediscovered it
> today while I was cleaning up stuff and running a sparse build of -rc4.
> 
> Cheers!
> 
> Emilio

Merged, thanks!

Maxime
diff mbox

Patch

diff --git a/arch/arm/mach-sunxi/platsmp.c b/arch/arm/mach-sunxi/platsmp.c
index c53077b..e44d028 100644
--- a/arch/arm/mach-sunxi/platsmp.c
+++ b/arch/arm/mach-sunxi/platsmp.c
@@ -116,7 +116,7 @@  static int sun6i_smp_boot_secondary(unsigned int cpu,
 	return 0;
 }
 
-struct smp_operations sun6i_smp_ops __initdata = {
+static struct smp_operations sun6i_smp_ops __initdata = {
 	.smp_prepare_cpus	= sun6i_smp_prepare_cpus,
 	.smp_boot_secondary	= sun6i_smp_boot_secondary,
 };