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

Commit f3556302 authored by Lee Jones's avatar Lee Jones
Browse files

mfd: ab8500-core: Remove pointless else in if statement



Save a line of code (albeit, it's replaced by a blank line, but
still), as the else is superfluous.

Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent a3dd01e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -607,7 +607,7 @@ int ab8500_suspend(struct ab8500 *ab8500)
{
	if (atomic_read(&ab8500->transfer_ongoing))
		return -EINVAL;
	else

	return 0;
}