diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2016-03-15 12:30:20 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-03-16 07:22:32 +0300 |
commit | b081251ef6d6d7cf06448deeb3d9860b636358f5 (patch) | |
tree | 37c888d54ba05473d437e886b9e037ca41f17cb5 /arch/powerpc/sysdev/fsl_rcpm.c | |
parent | 7a25d91214cb22e642b9ed6e4434bfaf74adad28 (diff) | |
download | linux-b081251ef6d6d7cf06448deeb3d9860b636358f5.tar.xz |
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/sysdev/fsl_rcpm.c')
-rw-r--r-- | arch/powerpc/sysdev/fsl_rcpm.c | 1 |
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; |