Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3690f8b authored by Greg Dietsche's avatar Greg Dietsche Committed by Geert Uytterhoeven
Browse files

m68k/math-emu: Remove unnecessary code



Remove unnecessary code that matches this coccinelle pattern

	if (...)
		return ret;
	return ret;

Signed-off-by: default avatarGreg Dietsche <Gregory.Dietsche@cuw.edu>
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent ffe6c42a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -105,9 +105,6 @@ fp_fetoxm1(struct fp_ext *dest, struct fp_ext *src)

	fp_monadic_check(dest, src);

	if (IS_ZERO(dest))
		return dest;

	return dest;
}