diff options
author | Thiemo Seufer <ths@networkno.de> | 2006-07-07 13:38:51 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-07-14 00:26:09 +0400 |
commit | 30f244aed36f569c2e3ea6e8457bf66adaf98a3d (patch) | |
tree | d58c55ff5db1afe470c19f4be46c7981e9cda6f1 /arch/mips/oprofile/op_model_mipsxx.c | |
parent | 192ef366198ce16c0379100565cdc5b7bd68511f (diff) | |
download | linux-30f244aed36f569c2e3ea6e8457bf66adaf98a3d.tar.xz |
[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/op_model_mipsxx.c')
-rw-r--r-- | arch/mips/oprofile/op_model_mipsxx.c | 2 |
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) |