ASoC: mchp-spdiftx: return directly ret
authorClaudiu Beznea <claudiu.beznea@microchip.com>
Mon, 25 Jul 2022 13:09:24 +0000 (16:09 +0300)
committerMark Brown <broonie@kernel.org>
Tue, 26 Jul 2022 10:46:52 +0000 (11:46 +0100)
commitd346a4ad305bf3f99e5824e0c132fac7e0b53657
tree042faf9eb270697067e3be38622d8b81a570c68f
parent24e89d6d7da52f8678dc111ffb0ae3590b678ef0
ASoC: mchp-spdiftx: return directly ret

Avoid having patterns like:

int ret;

// ...
ret = 0;
// ...

ret = call_function();
if (ret)
return ret;

return 0;

and return directly ret for all cases.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20220725130925.1781791-5-claudiu.beznea@microchip.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/atmel/mchp-spdiftx.c