From: Mark Brown Date: Fri, 2 Dec 2011 10:55:12 +0000 (+0000) Subject: ASoC: Add missing err label X-Git-Tag: accepted/tizen/common/20141203.182822~4454^2~337 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3631e8d43e385e851f88637244a287433246c097;p=platform%2Fkernel%2Flinux-arm64.git ASoC: Add missing err label Reported-by: Stephen Rothwell Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c index d9faa39..83e8033 100644 --- a/sound/soc/codecs/wm8994.c +++ b/sound/soc/codecs/wm8994.c @@ -3881,6 +3881,7 @@ err_irq: wm8994_free_irq(wm8994->wm8994, WM8994_IRQ_FIFOS_ERR, codec); wm8994_free_irq(wm8994->wm8994, WM8994_IRQ_TEMP_SHUT, codec); wm8994_free_irq(wm8994->wm8994, WM8994_IRQ_TEMP_WARN, codec); +err: return ret; }