aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2015-02-09 15:10:01 +0800
committerMark Brown <broonie@kernel.org>2015-02-09 15:10:01 +0800
commit03a3a2e25ff791f2870d477975a329a1c15eca26 (patch)
tree711a3c0faa190ba84fdd4d53e1f8d264dc08333b /sound
parentMerge remote-tracking branch 'asoc/topic/core' into asoc-next (diff)
parentASoC: dapm: Don't use async I/O (diff)
downloadlinux-dev-03a3a2e25ff791f2870d477975a329a1c15eca26.tar.xz
linux-dev-03a3a2e25ff791f2870d477975a329a1c15eca26.zip
Merge remote-tracking branch 'asoc/topic/dapm' into asoc-next
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-dapm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index 0c19f84e661a..ff0bce1a2d2c 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -517,8 +517,8 @@ static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
{
if (!dapm->component)
return -EIO;
- return snd_soc_component_update_bits_async(dapm->component, reg,
- mask, value);
+ return snd_soc_component_update_bits(dapm->component, reg,
+ mask, value);
}
static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,