From: Axel Lin Date: Wed, 14 Jul 2010 11:06:07 +0000 (+0800) Subject: ASoC:: remove a redundant snd_soc_unregister_codec call in wm8988_register X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cecb66fddf2a3deb44da1f741b6734a785df7957;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git ASoC:: remove a redundant snd_soc_unregister_codec call in wm8988_register snd_soc_unregister_codec is called twice if snd_soc_register_dai fail. Signed-off-by: Axel Lin Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8988.c b/sound/soc/codecs/wm8988.c index 0417dae32e6f..19ad590ca0b3 100644 --- a/sound/soc/codecs/wm8988.c +++ b/sound/soc/codecs/wm8988.c @@ -885,7 +885,6 @@ static int wm8988_register(struct wm8988_priv *wm8988, ret = snd_soc_register_dai(&wm8988_dai); if (ret != 0) { dev_err(codec->dev, "Failed to register DAI: %d\n", ret); - snd_soc_unregister_codec(codec); goto err_codec; }