From: Lars-Peter Clausen Date: Thu, 15 Jan 2015 11:52:15 +0000 (+0100) Subject: ASoC: rt5670: Replace w->codec snd_soc_dapm_to_codec(w->dapm) X-Git-Tag: v4.1-rc1~16^2~14^2~10^2~20^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=66454b3eb31e8109387606c054ae02f3cfd6543e;p=platform%2Fkernel%2Flinux-exynos.git ASoC: rt5670: Replace w->codec snd_soc_dapm_to_codec(w->dapm) The codec field of the snd_soc_widget struct is eventually going to be removed, use snd_soc_dapm_to_codec(w->dapm) instead. Signed-off-by: Lars-Peter Clausen Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/rt5670.c b/sound/soc/codecs/rt5670.c index 91d2069a9..cc7f84a 100644 --- a/sound/soc/codecs/rt5670.c +++ b/sound/soc/codecs/rt5670.c @@ -699,7 +699,7 @@ static int set_dmic_clk(struct snd_soc_dapm_widget *w, static int is_sys_clk_from_pll(struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink) { - struct snd_soc_codec *codec = source->codec; + struct snd_soc_codec *codec = snd_soc_dapm_to_codec(source->dapm); struct rt5670_priv *rt5670 = snd_soc_codec_get_drvdata(codec); if (rt5670->sysclk_src == RT5670_SCLK_S_PLL1)