aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2016-03-15 20:30:20 +1100
committerMichael Ellerman <mpe@ellerman.id.au>2016-03-16 15:22:32 +1100
commitb081251ef6d6d7cf06448deeb3d9860b636358f5 (patch)
tree37c888d54ba05473d437e886b9e037ca41f17cb5 /arch/powerpc
parentpowerpc/book3e-64: Use hardcoded mttmr opcode (diff)
downloadlinux-dev-b081251ef6d6d7cf06448deeb3d9860b636358f5.tar.xz
linux-dev-b081251ef6d6d7cf06448deeb3d9860b636358f5.zip
powerpc/rcpm: Fix build break when SMP=n
Add an include of asm/smp.h to fix a build break when SMP=n: arch/powerpc/sysdev/fsl_rcpm.c:32:2: error: implicit declaration of function 'get_hard_smp_processor_id' Fixes: d17799f9c10e ("powerpc/rcpm: add RCPM driver") Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/sysdev/fsl_rcpm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/fsl_rcpm.c b/arch/powerpc/sysdev/fsl_rcpm.c
index 656d9ca057e5..9259a94f70e1 100644
--- a/arch/powerpc/sysdev/fsl_rcpm.c
+++ b/arch/powerpc/sysdev/fsl_rcpm.c
@@ -22,6 +22,7 @@
#include <linux/fsl/guts.h>
#include <asm/cputhreads.h>
#include <asm/fsl_pm.h>
+#include <asm/smp.h>
static struct ccsr_rcpm_v1 __iomem *rcpm_v1_regs;
static struct ccsr_rcpm_v2 __iomem *rcpm_v2_regs;