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

Commit fa54aade authored by Charles Keepax's avatar Charles Keepax Committed by Mark Brown
Browse files

ASoC: wm2000: Fix return of uninitialised varible



Anything that sets ret in wm2000_anc_transition will have immediately
returned anyway as such we will always return an uninitialised ret at the
bottom of the function. Simply replace the return with a return 0;

Signed-off-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 29b4817d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -581,7 +581,7 @@ static int wm2000_anc_transition(struct wm2000_priv *wm2000,
	if (anc_transitions[i].dest == ANC_OFF)
		clk_disable_unprepare(wm2000->mclk);

	return ret;
	return 0;
}

static int wm2000_anc_set_mode(struct wm2000_priv *wm2000)