projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23ba286
)
ASoC: codecs: wcd934x: return correct value from mixer put
author
Srinivas Kandagatla
<srinivas.kandagatla@linaro.org>
Tue, 30 Nov 2021 16:05:06 +0000
(16:05 +0000)
committer
Mark Brown
<broonie@kernel.org>
Wed, 1 Dec 2021 14:13:50 +0000
(14:13 +0000)
wcd934x_compander_set() currently returns zero eventhough it changes the value.
Fix this, so that change notifications are sent correctly.
Fixes:
1cde8b822332
("ASoC: wcd934x: add basic controls")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link:
https://lore.kernel.org/r/20211130160507.22180-4-srinivas.kandagatla@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/wcd934x.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/wcd934x.c
b/sound/soc/codecs/wcd934x.c
index
eb4e2f2
..
e63c6b7
100644
(file)
--- a/
sound/soc/codecs/wcd934x.c
+++ b/
sound/soc/codecs/wcd934x.c
@@
-3256,6
+3256,9
@@
static int wcd934x_compander_set(struct snd_kcontrol *kc,
int value = ucontrol->value.integer.value[0];
int sel;
+ if (wcd->comp_enabled[comp] == value)
+ return 0;
+
wcd->comp_enabled[comp] = value;
sel = value ? WCD934X_HPH_GAIN_SRC_SEL_COMPANDER :
WCD934X_HPH_GAIN_SRC_SEL_REGISTER;
@@
-3279,10
+3282,10
@@
static int wcd934x_compander_set(struct snd_kcontrol *kc,
case COMPANDER_8:
break;
default:
-
break
;
+
return 0
;
}
- return
0
;
+ return
1
;
}
static int wcd934x_rx_hph_mode_get(struct snd_kcontrol *kc,