diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2021-11-24 12:32:49 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-11-29 14:49:09 +0300 |
commit | 4ea9e321c27fd531a8dfe0fa1d1b2ee15fc3444e (patch) | |
tree | 37362f141eb277a170e401de3aa6368416e488bf | |
parent | 2eafc4748bc08c5b9b6ee0b5b65ad20b30f7d704 (diff) | |
download | linux-4ea9e321c27fd531a8dfe0fa1d1b2ee15fc3444e.tar.xz |
powerpc/85xx: Fix no previous prototype warning for mpc85xx_setup_pmc()
Fixes the following W=1 warning:
arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c:89:12: warning: no previous prototype for 'mpc85xx_setup_pmc'
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20211124093254.1054750-1-mpe@ellerman.id.au
-rw-r--r-- | arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c b/arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c index 4a8af80011a6..f7ac92a8ae97 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c @@ -15,6 +15,8 @@ #include <asm/io.h> #include <asm/fsl_pm.h> +#include "smp.h" + static struct ccsr_guts __iomem *guts; #ifdef CONFIG_FSL_PMC |