diff options
author | Mark Brown <broonie@linaro.org> | 2013-08-06 00:34:17 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-06 11:52:01 +0200 |
commit | ed6a27723979cfffab62c450baba4f75ebcbda78 (patch) | |
tree | ad6b79c5cc155f8b1459495c906a8b19e79e4455 /sound/soc/codecs/wm8994.c | |
parent | ASoC: wm8994: Add clock bindings to the device tree (diff) | |
download | linux-ed6a27723979cfffab62c450baba4f75ebcbda78.tar.xz linux-ed6a27723979cfffab62c450baba4f75ebcbda78.zip |
ASoC: wm8994: Fix class W controls
Commit 6e0650 (ASoC: wm8994: Use SOC_SINGLE_EXT() instead of open-coding
it) went too far and converted a DAPM control to use SOC_SINGLE_EXT()
which crashes. Revert that portion of the patch.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/codecs/wm8994.c')
-rw-r--r-- | sound/soc/codecs/wm8994.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c index 24131a7f9390..c99b6da79efd 100644 --- a/sound/soc/codecs/wm8994.c +++ b/sound/soc/codecs/wm8994.c @@ -1433,7 +1433,7 @@ SOC_DAPM_SINGLE("AIF1.1 Switch", WM8994_DAC2_RIGHT_MIXER_ROUTING, #define WM8994_CLASS_W_SWITCH(xname, reg, shift, max, invert) \ SOC_SINGLE_EXT(xname, reg, shift, max, invert, \ - snd_soc_get_volsw, wm8994_put_class_w) + snd_soc_dapm_get_volsw, wm8994_put_class_w) static int wm8994_put_class_w(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |