diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-10-06 02:59:12 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-10-06 06:16:08 -0400 |
commit | c4671a95857800941cb5aa6405170f3a91e448b4 (patch) | |
tree | 40fa82493867ed87d152e4482f2664cf4aee4d9d /sound/soc/codecs/wm8350.c | |
parent | 9a185b9abacb7924b79e76a7a410de202aaf505b (diff) |
ASoC: Replace remaining use of *_volsw_2r with *_volsw
The snd_soc_*_volsw_2r functionality has been merged to
*volsw callbacks.
Few places still used the get, or put variant of volsw_2r,
replace those with the corresponding *_volsw.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/wm8350.c')
-rw-r--r-- | sound/soc/codecs/wm8350.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8350.c b/sound/soc/codecs/wm8350.c index 50ea9d7d12d0..35f3ad83dfb6 100644 --- a/sound/soc/codecs/wm8350.c +++ b/sound/soc/codecs/wm8350.c | |||
@@ -355,7 +355,7 @@ static int wm8350_put_volsw_2r_vu(struct snd_kcontrol *kcontrol, | |||
355 | return 1; | 355 | return 1; |
356 | } | 356 | } |
357 | 357 | ||
358 | ret = snd_soc_put_volsw_2r(kcontrol, ucontrol); | 358 | ret = snd_soc_put_volsw(kcontrol, ucontrol); |
359 | if (ret < 0) | 359 | if (ret < 0) |
360 | return ret; | 360 | return ret; |
361 | 361 | ||
@@ -392,7 +392,7 @@ static int wm8350_get_volsw_2r(struct snd_kcontrol *kcontrol, | |||
392 | break; | 392 | break; |
393 | } | 393 | } |
394 | 394 | ||
395 | return snd_soc_get_volsw_2r(kcontrol, ucontrol); | 395 | return snd_soc_get_volsw(kcontrol, ucontrol); |
396 | } | 396 | } |
397 | 397 | ||
398 | static const char *wm8350_deemp[] = { "None", "32kHz", "44.1kHz", "48kHz" }; | 398 | static const char *wm8350_deemp[] = { "None", "32kHz", "44.1kHz", "48kHz" }; |