diff mbox series

powerpc/rtas: unexport rtas_online_cpus_mask, rtas_offline_cpus_mask

Message ID 20190718162214.5694-1-nathanl@linux.ibm.com (mailing list archive)
State Accepted
Commit ae2e953fdca791270e80c08d6a830d9aa472a111
Headers show
Series powerpc/rtas: unexport rtas_online_cpus_mask, rtas_offline_cpus_mask | expand

Checks

Context Check Description
snowpatch_ozlabs/apply_patch success Successfully applied on branch next (f5c20693d8edcd665f1159dc941b9e7f87c17647)
snowpatch_ozlabs/build-ppc64le success Build succeeded
snowpatch_ozlabs/build-ppc64be success Build succeeded
snowpatch_ozlabs/build-ppc64e success Build succeeded
snowpatch_ozlabs/build-pmac32 success Build succeeded
snowpatch_ozlabs/checkpatch success total: 0 errors, 0 warnings, 0 checks, 13 lines checked

Commit Message

Nathan Lynch July 18, 2019, 4:22 p.m. UTC
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 <nathanl@linux.ibm.com>
---
 arch/powerpc/kernel/rtas.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Michael Ellerman Aug. 10, 2019, 10:20 a.m. UTC | #1
On Thu, 2019-07-18 at 16:22:14 UTC, Nathan Lynch wrote:
> 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 <nathanl@linux.ibm.com>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/ae2e953fdca791270e80c08d6a830d9aa472a111

cheers
diff mbox series

Patch

diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c
index 9b4d2a2ffb4f..2d4c9a0c4f08 100644
--- a/arch/powerpc/kernel/rtas.c
+++ b/arch/powerpc/kernel/rtas.c
@@ -926,13 +926,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)
 {