aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-09-04 08:18:18 -0700
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-09-05 18:10:52 -0700
commit747da0f80e566500421bd7760b2e050fea3fde5e (patch)
treedb5635ebd8042791d7f4ed48aea0538154bb81ff /sound
parentASoC: imx: Fix build warning of unused 'card' variable (diff)
downloadlinux-dev-747da0f80e566500421bd7760b2e050fea3fde5e.tar.xz
linux-dev-747da0f80e566500421bd7760b2e050fea3fde5e.zip
ASoC: Fix reporting of partial jack updates
We need to report the entire jack state to the core jack code, not just the bits that were being updated by the caller, otherwise the status reported by other detection methods will be omitted from the state seen by userspace. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com> Cc: stable@kernel.org
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-jack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-jack.c b/sound/soc/soc-jack.c
index 38b00131b2fe..fa31d9c2abd8 100644
--- a/sound/soc/soc-jack.c
+++ b/sound/soc/soc-jack.c
@@ -105,7 +105,7 @@ void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
snd_soc_dapm_sync(dapm);
- snd_jack_report(jack->jack, status);
+ snd_jack_report(jack->jack, jack->status);
out:
mutex_unlock(&codec->mutex);