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

Commit ecea9313 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: audio-graph-card: tidyup return method from probe()



Current return method from probe() is very confusable.
This patch tidyup it to normal return method

Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 2692c1c6
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -271,8 +271,10 @@ static int asoc_graph_card_probe(struct platform_device *pdev)
	snd_soc_card_set_drvdata(card, priv);

	ret = devm_snd_soc_register_card(dev, card);
	if (ret >= 0)
		return ret;
	if (ret < 0)
		goto err;

	return 0;
err:
	asoc_simple_card_clean_reference(card);