aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2020-06-01 21:53:32 +0200
committerPriyanka Jain <priyanka.jain@nxp.com>2020-07-27 14:16:28 +0530
commit86c31dad329c17aca43188c4c4d55b133a31e7e5 (patch)
treef5b19ffffb4bc89a4f67b61a9a46054dcce3aae7
parentdcfbbed570a2ce310517516989e49392ba83b8e5 (diff)
downloadu-boot-86c31dad329c17aca43188c4c4d55b133a31e7e5.zip
u-boot-86c31dad329c17aca43188c4c4d55b133a31e7e5.tar.gz
u-boot-86c31dad329c17aca43188c4c4d55b133a31e7e5.tar.bz2
armv8: layerscape: make wake_secondary_core_n() static
This function is not used outside the module. Make it static. Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
-rw-r--r--arch/arm/cpu/armv8/fsl-layerscape/mp.c2
1 files changed, 1 insertions, 1 deletions
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);