From ae2e953fdca791270e80c08d6a830d9aa472a111 Mon Sep 17 00:00:00 2001 From: Nathan Lynch Date: Thu, 18 Jul 2019 11:22:14 -0500 Subject: [PATCH] powerpc/rtas: Unexport rtas_online_cpus_mask, rtas_offline_cpus_mask These aren't used by modular code, nor should they be. Fixes: 120496ac2d2d ("powerpc: Bring all threads online prior to migration/hibernation") Signed-off-by: Nathan Lynch Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20190718162214.5694-1-nathanl@linux.ibm.com --- arch/powerpc/kernel/rtas.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c index 5faf0a64c92b..49159bb38949 100644 --- a/arch/powerpc/kernel/rtas.c +++ b/arch/powerpc/kernel/rtas.c @@ -922,13 +922,11 @@ int rtas_online_cpus_mask(cpumask_var_t cpus) return ret; } -EXPORT_SYMBOL(rtas_online_cpus_mask); int rtas_offline_cpus_mask(cpumask_var_t cpus) { return rtas_cpu_state_change_mask(DOWN, cpus); } -EXPORT_SYMBOL(rtas_offline_cpus_mask); int rtas_ibm_suspend_me(u64 handle) { -- 2.30.2