Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 02c24f7d authored by Emilio López's avatar Emilio López Committed by Maxime Ripard
Browse files

ARM: sunxi: make sun6i SMP ops static



The sun6i SMP ops are currently not marked as static, as reported by
sparse. Let's mark it as such.

Signed-off-by: default avatarEmilio López <emilio@elopez.com.ar>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
parent 2f4bc734
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -116,7 +116,7 @@ static int sun6i_smp_boot_secondary(unsigned int cpu,
	return 0;
	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_prepare_cpus	= sun6i_smp_prepare_cpus,
	.smp_boot_secondary	= sun6i_smp_boot_secondary,
	.smp_boot_secondary	= sun6i_smp_boot_secondary,
};
};