summary refs log tree commit diff
path: root/arch/mips/oprofile
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2006-07-07 10:38:51 +0100
committerRalf Baechle <ralf@linux-mips.org>2006-07-13 21:26:09 +0100
commit30f244aed36f569c2e3ea6e8457bf66adaf98a3d (patch)
treed58c55ff5db1afe470c19f4be46c7981e9cda6f1 /arch/mips/oprofile
parent192ef366198ce16c0379100565cdc5b7bd68511f (diff)
downloadlinux-30f244aed36f569c2e3ea6e8457bf66adaf98a3d.tar.gz
[MIPS] Oprofile: Fix build failure due to warning and -Werror.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/oprofile')
-rw-r--r--arch/mips/oprofile/op_model_mipsxx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/oprofile/op_model_mipsxx.c b/arch/mips/oprofile/op_model_mipsxx.c
index a09c5f901233..a175d673540f 100644
--- a/arch/mips/oprofile/op_model_mipsxx.c
+++ b/arch/mips/oprofile/op_model_mipsxx.c
@@ -49,6 +49,7 @@ static inline unsigned int r_c0_ ## r ## n(void)			\
 	default:							\
 		BUG();							\
 	}								\
+	return 0;							\
 }									\
 									\
 static inline void w_c0_ ## r ## n(unsigned int value)			\
@@ -65,6 +66,7 @@ static inline void w_c0_ ## r ## n(unsigned int value)			\
 	default:							\
 		BUG();							\
 	}								\
+	return;								\
 }									\
 
 __define_perf_accessors(perfcntr, 0, 2)