diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-11 19:00:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-11 19:00:28 +0200 |
commit | cbf9c5ae32655e6c075fee9b55a9d8be4e67684c (patch) | |
tree | ba92ab66314ee80444f1856f7cc3c29c36424de1 /sound/soc | |
parent | Merge remote-tracking branch 'asoc/fix/compress' into tmp (diff) | |
parent | ASoC: core: Fix to check return value of snd_soc_update_bits_locked() (diff) | |
download | linux-cbf9c5ae32655e6c075fee9b55a9d8be4e67684c.tar.xz linux-cbf9c5ae32655e6c075fee9b55a9d8be4e67684c.zip |
Merge remote-tracking branch 'asoc/fix/core' into tmp
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/soc-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 507d251916af..ff4b45a5d796 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -2963,7 +2963,7 @@ int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol, val = val << shift; ret = snd_soc_update_bits_locked(codec, reg, val_mask, val); - if (ret != 0) + if (ret < 0) return ret; if (snd_soc_volsw_is_stereo(mc)) { |