ASoC: wm8727: add a missing return in wm8727_platform_probe

otherwise the error path will always be executed.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

authored by Axel Lin and committed by Mark Brown c555b028 63772783

+2
+2
sound/soc/codecs/wm8727.c
··· 127 goto err_codec; 128 } 129 130 err_codec: 131 snd_soc_unregister_codec(codec); 132 err:
··· 127 goto err_codec; 128 } 129 130 + return 0; 131 + 132 err_codec: 133 snd_soc_unregister_codec(codec); 134 err: