From: Geert Uytterhoeven <geert@linux-m68k.org>
To: broonie@kernel.org, "Martin Povišer" <povik+lin@cutebit.org>
Cc: Liam Girdwood <lgirdwood@gmail.com>,
linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ASoC: ops: Enforce platform maximum on initial value
Date: Tue, 18 Feb 2025 14:52:46 +0100 [thread overview]
Message-ID: <CAMuHMdXc8j14PwNnO2e3sPDCeS9fXx01qoMJHxWjxtuT3DrDNQ@mail.gmail.com> (raw)
In-Reply-To: <20250208-asoc-volume-limit-v1-1-b98fcf4cdbad@kernel.org>
Hi Mark, Martin,
On Sat, 8 Feb 2025 at 01:57, <broonie@kernel.org> wrote:
> From: Martin Povišer <povik+lin@cutebit.org>
>
> Lower the volume if it is violating the platform maximum at its initial
> value (i.e. at the time of the 'snd_soc_limit_volume' call).
>
> Signed-off-by: Martin Povišer <povik+lin@cutebit.org>
> [Cherry picked from the Asahi kernel with fixups -- broonie]
> Signed-off-by: Mark Brown <broonie@kernel.orG>
Thanks for your patch, which is now commit 783db6851c1821d8 ("ASoC:
ops: Enforce platform maximum on initial value") in linux-next/master
next-20250218 sound-asoc/for-next
> --- a/sound/soc/soc-ops.c
> +++ b/sound/soc/soc-ops.c
> @@ -640,6 +640,33 @@ int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
> }
> EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
>
> +static int snd_soc_clip_to_platform_max(struct snd_kcontrol *kctl)
> +{
> + struct soc_mixer_control *mc = (struct soc_mixer_control *)kctl->private_value;
> + struct snd_ctl_elem_value uctl;
sizeof(snd_ctl_elem_value) = 1224, causing:
sound/soc/soc-ops.c:657:1: error: the frame size of 1232 bytes is
larger than 1024 bytes [-Werror=frame-larger-than=]
> + int ret;
> +
> + if (!mc->platform_max)
> + return 0;
> +
> + ret = kctl->get(kctl, &uctl);
> + if (ret < 0)
> + return ret;
> +
> + if (uctl.value.integer.value[0] > mc->platform_max)
> + uctl.value.integer.value[0] = mc->platform_max;
> +
> + if (snd_soc_volsw_is_stereo(mc) &&
> + uctl.value.integer.value[1] > mc->platform_max)
> + uctl.value.integer.value[1] = mc->platform_max;
> +
> + ret = kctl->put(kctl, &uctl);
> + if (ret < 0)
> + return ret;
> +
> + return 0;
> +}
> +
> /**
> * snd_soc_limit_volume - Set new limit to an existing volume control.
> *
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
prev parent reply other threads:[~2025-02-18 13:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-08 0:57 [PATCH] ASoC: ops: Enforce platform maximum on initial value broonie
2025-02-17 13:38 ` Mark Brown
2025-02-18 13:52 ` Geert Uytterhoeven [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAMuHMdXc8j14PwNnO2e3sPDCeS9fXx01qoMJHxWjxtuT3DrDNQ@mail.gmail.com \
--to=geert@linux-m68k.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=povik+lin@cutebit.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox