diff options
author | Greg Dietsche <Gregory.Dietsche@cuw.edu> | 2011-06-16 12:42:07 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-07-30 15:21:40 -0400 |
commit | d3690f8b713f9710e68214ca38fb8b07b587a2a7 (patch) | |
tree | 22ce13dd5e5f9d0a3b84dc4b741cef9575462d52 /arch/m68k/math-emu | |
parent | ffe6c42aa3f731f8707e49c39b4b37310ed363e9 (diff) |
m68k/math-emu: Remove unnecessary code
Remove unnecessary code that matches this coccinelle pattern
if (...)
return ret;
return ret;
Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/math-emu')
-rw-r--r-- | arch/m68k/math-emu/fp_log.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/m68k/math-emu/fp_log.c b/arch/m68k/math-emu/fp_log.c index 367ecee2f981..3384a5244fbd 100644 --- a/arch/m68k/math-emu/fp_log.c +++ b/arch/m68k/math-emu/fp_log.c | |||
@@ -105,9 +105,6 @@ fp_fetoxm1(struct fp_ext *dest, struct fp_ext *src) | |||
105 | 105 | ||
106 | fp_monadic_check(dest, src); | 106 | fp_monadic_check(dest, src); |
107 | 107 | ||
108 | if (IS_ZERO(dest)) | ||
109 | return dest; | ||
110 | |||
111 | return dest; | 108 | return dest; |
112 | } | 109 | } |
113 | 110 | ||