summaryrefslogtreecommitdiff
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorBrian Austin <brian.austin@cirrus.com>2012-04-03 16:33:50 (GMT)
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-04-03 19:29:45 (GMT)
commit27f1d75921e7273e484cc2fab132d9fcbe9f845d (patch)
tree572116a1e8d47172003a259769ce2fc47855714b /sound/soc/soc-core.c
parent1d99f2436d0d1c7741d6dfd9d27b5376cdbbca40 (diff)
downloadlinux-fsl-qoriq-27f1d75921e7273e484cc2fab132d9fcbe9f845d.tar.xz
ASoC: core: Initialize err for snd_soc_put_volsw_sx
sound/soc/soc-core.c: In function ‘snd_soc_put_volsw_sx’: sound/soc/soc-core.c:2600: warning: ‘err’ may be used uninitialized in this function Signed-off-by: Brian Austin <brian.austin@cirrus.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 7b1a4fd..a6922bc 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -2586,7 +2586,7 @@ int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
int max = mc->max;
int min = mc->min;
int mask = (1 << (fls(min + max) - 1)) - 1;
- int err;
+ int err = 0;
unsigned short val, val_mask, val2 = 0;
val_mask = mask << shift;