summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/pseries/pseries.h
diff options
context:
space:
mode:
authorStephen Rothwell2007-05-16 05:21:09 +0200
committerPaul Mackerras2007-05-17 13:11:14 +0200
commitf7c0d13b9430c4bb4b6f8507ed19d7cc7971dfa5 (patch)
treed8bda386c69b507d8dedaa0a72b567339f0b8539 /arch/powerpc/platforms/pseries/pseries.h
parent[POWERPC] cell_defconfig: Disable cpufreq and pmi (diff)
downloadkernel-qcow2-linux-f7c0d13b9430c4bb4b6f8507ed19d7cc7971dfa5.tar.gz
kernel-qcow2-linux-f7c0d13b9430c4bb4b6f8507ed19d7cc7971dfa5.tar.xz
kernel-qcow2-linux-f7c0d13b9430c4bb4b6f8507ed19d7cc7971dfa5.zip
[POWERPC] Fix warning on UP
arch/powerpc/platforms/pseries/pseries.h:24: warning: return type defaults to 'int' arch/powerpc/platforms/pseries/pseries.h:25: warning: return type defaults to 'int' arch/powerpc/platforms/pseries/pseries.h:24: warning: control reaches end of non-void function arch/powerpc/platforms/pseries/pseries.h:25: warning: control reaches end of non-void function Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries/pseries.h')
-rw-r--r--arch/powerpc/platforms/pseries/pseries.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pseries/pseries.h b/arch/powerpc/platforms/pseries/pseries.h
index 22bc01989749..2729d559fd91 100644
--- a/arch/powerpc/platforms/pseries/pseries.h
+++ b/arch/powerpc/platforms/pseries/pseries.h
@@ -21,8 +21,8 @@ extern int pSeries_machine_check_exception(struct pt_regs *regs);
extern void smp_init_pseries_mpic(void);
extern void smp_init_pseries_xics(void);
#else
-static inline smp_init_pseries_mpic(void) { };
-static inline smp_init_pseries_xics(void) { };
+static inline void smp_init_pseries_mpic(void) { };
+static inline void smp_init_pseries_xics(void) { };
#endif
#ifdef CONFIG_KEXEC