From: Michael Walle Date: Mon, 1 Jun 2020 19:53:32 +0000 (+0200) Subject: armv8: layerscape: make wake_secondary_core_n() static X-Git-Tag: v2020.10~96^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86c31dad329c17aca43188c4c4d55b133a31e7e5;p=platform%2Fkernel%2Fu-boot.git armv8: layerscape: make wake_secondary_core_n() static This function is not used outside the module. Make it static. Signed-off-by: Michael Walle Reviewed-by: Priyanka Jain --- diff --git a/arch/arm/cpu/armv8/fsl-layerscape/mp.c b/arch/arm/cpu/armv8/fsl-layerscape/mp.c index c4692dc..753215a 100644 --- a/arch/arm/cpu/armv8/fsl-layerscape/mp.c +++ b/arch/arm/cpu/armv8/fsl-layerscape/mp.c @@ -39,7 +39,7 @@ void update_os_arch_secondary_cores(uint8_t os_arch) } #ifdef CONFIG_FSL_LSCH3 -void wake_secondary_core_n(int cluster, int core, int cluster_cores) +static void wake_secondary_core_n(int cluster, int core, int cluster_cores) { struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR); struct ccsr_reset __iomem *rst = (void *)(CONFIG_SYS_FSL_RST_ADDR);