projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d06432b
)
ASoC: cs35l56: Use header defines for Speaker Volume control definition
author
Richard Fitzgerald
<rf@opensource.cirrus.com>
Wed, 3 Jul 2024 09:55:16 +0000
(10:55 +0100)
committer
Mark Brown
<broonie@kernel.org>
Wed, 3 Jul 2024 12:05:42 +0000
(13:05 +0100)
The "Speaker Volume" control was being defined using four hardcoded magic
numbers. There are #defines in the cs35l56.h header for these numbers, so
change the code to use the defined constants.
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link:
https://patch.msgid.link/20240703095517.208077-2-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs35l56.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/codecs/cs35l56.c
b/sound/soc/codecs/cs35l56.c
index 7cac9812f5b5bc680ffbf01fdaf4da3d242b3578..84c34f5b1a516d092e1ded727d3eb77c9f7f5b1e 100644
(file)
--- a/
sound/soc/codecs/cs35l56.c
+++ b/
sound/soc/codecs/cs35l56.c
@@
-71,7
+71,11
@@
static const struct snd_kcontrol_new cs35l56_controls[] = {
cs35l56_dspwait_get_volsw, cs35l56_dspwait_put_volsw),
SOC_SINGLE_S_EXT_TLV("Speaker Volume",
CS35L56_MAIN_RENDER_USER_VOLUME,
- 6, -400, 400, 9, 0,
+ CS35L56_MAIN_RENDER_USER_VOLUME_SHIFT,
+ CS35L56_MAIN_RENDER_USER_VOLUME_MIN,
+ CS35L56_MAIN_RENDER_USER_VOLUME_MAX,
+ CS35L56_MAIN_RENDER_USER_VOLUME_SIGNBIT,
+ 0,
cs35l56_dspwait_get_volsw,
cs35l56_dspwait_put_volsw,
vol_tlv),