* [PATCH 1/2] ASoC: cs35l56: Use header defines for Speaker Volume control definition
2024-07-03 9:55 [PATCH 0/2] ASoC: cs35l56: Set correct upper volume limit Richard Fitzgerald
@ 2024-07-03 9:55 ` Richard Fitzgerald
2024-07-03 9:55 ` [PATCH 2/2] ASoC: cs35l56: Limit Speaker Volume to +12dB maximum Richard Fitzgerald
2024-07-03 17:21 ` [PATCH 0/2] ASoC: cs35l56: Set correct upper volume limit Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Richard Fitzgerald @ 2024-07-03 9:55 UTC (permalink / raw)
To: broonie; +Cc: linux-kernel, patches, alsa-devel, linux-sound
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>
---
sound/soc/codecs/cs35l56.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/sound/soc/codecs/cs35l56.c b/sound/soc/codecs/cs35l56.c
index 7cac9812f5b5..84c34f5b1a51 100644
--- 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),
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 0/2] ASoC: cs35l56: Set correct upper volume limit
2024-07-03 9:55 [PATCH 0/2] ASoC: cs35l56: Set correct upper volume limit Richard Fitzgerald
2024-07-03 9:55 ` [PATCH 1/2] ASoC: cs35l56: Use header defines for Speaker Volume control definition Richard Fitzgerald
2024-07-03 9:55 ` [PATCH 2/2] ASoC: cs35l56: Limit Speaker Volume to +12dB maximum Richard Fitzgerald
@ 2024-07-03 17:21 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2024-07-03 17:21 UTC (permalink / raw)
To: Richard Fitzgerald; +Cc: linux-kernel, patches, alsa-devel, linux-sound
On Wed, 03 Jul 2024 10:55:15 +0100, Richard Fitzgerald wrote:
> These two commits set the upper limit of the Speaker Volume control
> to +12dB instead of +100dB.
>
> This should have been a simple 1-line change to the #define in the
> header file, but only the HDA cs35l56 driver is using this define.
> The ASoC cs35l56 driver was using hardcoded numbers instead of the
> header defines.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/2] ASoC: cs35l56: Use header defines for Speaker Volume control definition
commit: c66995ae403073212f5ba60d2079003866c6e130
[2/2] ASoC: cs35l56: Limit Speaker Volume to +12dB maximum
commit: 244389bd42870640c4b5ef672a360da329b579ed
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 4+ messages in thread