Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f7c0d13b9430c4bb4b6f8507ed19d7cc7971dfa5
Commit:     f7c0d13b9430c4bb4b6f8507ed19d7cc7971dfa5
Parent:     0453c62c8035f1a8a6e331b235c02ccdcb4e8910
Author:     Stephen Rothwell <[EMAIL PROTECTED]>
AuthorDate: Wed May 16 13:21:09 2007 +1000
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Thu May 17 21:11:14 2007 +1000

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 arch/powerpc/platforms/pseries/pseries.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/platforms/pseries/pseries.h 
b/arch/powerpc/platforms/pseries/pseries.h
index 22bc019..2729d55 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
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to