summaryrefslogtreecommitdiffstats
path: root/include/sound/soc.h
diff options
context:
space:
mode:
authorLars-Peter Clausen2013-07-29 17:13:55 +0200
committerMark Brown2013-07-29 19:40:59 +0200
commit564c65049eddb1a95b48958080db97eda88c98dd (patch)
treebfcb726569f7296f6875c564ba58276a0a36547a /include/sound/soc.h
parentMerge branch 'topic/core' of git://git.kernel.org/pub/scm/linux/kernel/git/br... (diff)
downloadkernel-qcow2-linux-564c65049eddb1a95b48958080db97eda88c98dd.tar.gz
kernel-qcow2-linux-564c65049eddb1a95b48958080db97eda88c98dd.tar.xz
kernel-qcow2-linux-564c65049eddb1a95b48958080db97eda88c98dd.zip
ASoC: dapm: Move snd_soc_dapm_update from dapm context to card
The update field of a DAPM context is only assigned while the card's dapm_mutex is locked, the field is also cleared again while the mutex is stil locked. So there will only ever be one DAPM context at a time with a non-NULL update field. So it is safe to move the update field from the DAPM context struct to the card struct. Doing so will allow further cleanups in this area. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/sound/soc.h')
-rw-r--r--include/sound/soc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 6eabee7ec15a..b1e1f967ae1e 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -1042,6 +1042,7 @@ struct snd_soc_card {
/* Generic DAPM context for the card */
struct snd_soc_dapm_context dapm;
struct snd_soc_dapm_stats dapm_stats;
+ struct snd_soc_dapm_update *update;
#ifdef CONFIG_DEBUG_FS
struct dentry *debugfs_card_root;