diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-08-25 04:06:04 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-25 16:57:13 +0300 |
commit | 88c27465dc7e3f11c43de295f623c44f593a0912 (patch) | |
tree | f4646c4c99a69104580416c321f3157cdb3d9e50 /sound | |
parent | 6a6dafda937cfcdbbfe46a3e093de8bb929ba52d (diff) | |
download | linux-88c27465dc7e3f11c43de295f623c44f593a0912.tar.xz |
ASoC: use snd_soc_component_get_dapm()
Now we have snd_soc_component_get_dapm(),
and as soc.h say below, let's use it.
/* Don't use these, use snd_soc_component_get_dapm() */
struct snd_soc_dapm_context dapm;
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/soc-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 74c17068bb11..92e09cb7fda4 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -3220,7 +3220,7 @@ static int snd_soc_component_initialize(struct snd_soc_component *component, component->pcm_new = component->driver->pcm_new; component->pcm_free = component->driver->pcm_free; - dapm = &component->dapm; + dapm = snd_soc_component_get_dapm(component); dapm->dev = dev; dapm->component = component; dapm->bias_level = SND_SOC_BIAS_OFF; |