From: Christian Engelmayer Date: Fri, 13 Jun 2014 17:19:28 +0000 (+0200) Subject: ASoC: wm8985: Remove unused pointer in wm8985_remove() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=7eced3ec080d7868715f8af4628c36726ef913e7;p=deliverable%2Flinux.git ASoC: wm8985: Remove unused pointer in wm8985_remove() Commit a0b148b4 (ASoC: wm8985: Use devm_regulator_bulk_get()) removed the last user of pointer wm8985 to struct wm8985_priv. Thus remove it. Detected by Coverity CID 1222150. Signed-off-by: Christian Engelmayer Acked-by: Charles Keepax Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8985.c b/sound/soc/codecs/wm8985.c index 0f5780c09f3a..cbbdfbbd0a9f 100644 --- a/sound/soc/codecs/wm8985.c +++ b/sound/soc/codecs/wm8985.c @@ -980,9 +980,6 @@ static int wm8985_resume(struct snd_soc_codec *codec) static int wm8985_remove(struct snd_soc_codec *codec) { - struct wm8985_priv *wm8985; - - wm8985 = snd_soc_codec_get_drvdata(codec); wm8985_set_bias_level(codec, SND_SOC_BIAS_OFF); return 0; }