public inbox for alsa-devel@alsa-project.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Stefan Stistrup <sstistrup@gmail.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: [PATCH] ALSA: usb-audio: Add input gain and master output mixer controls for RME Babyface Pro
Date: Tue, 06 Aug 2024 16:21:04 +0200	[thread overview]
Message-ID: <87mslp91gv.wl-tiwai@suse.de> (raw)
In-Reply-To: <87jzgu9bsr.wl-tiwai@suse.de>

On Tue, 06 Aug 2024 12:37:56 +0200,
Takashi Iwai wrote:
> 
> On Fri, 02 Aug 2024 16:24:39 +0200,
> Stefan Stistrup wrote:
> > 
> > Add missing input gain and master output mixer controls for RME Babyface Pro
> > 
> > This patch implements:
> > 
> > 1. Input gain controls for 2 mic and 2 line inputs
> > 2. Master output volume controls for all 12 output channels
> > 
> > These additions allow for more complete control of the Babyface Pro under Linux.
> > 
> > Signed-off-by: Stefan Stistrup <sstistrup@gmail.com>
> > +static int snd_bbfpro_gain_update(struct usb_mixer_interface *mixer,
> > +				  u8 channel, u8 gain)
> > +{
> > +	int err;
> > +
> > +	struct snd_usb_audio *chip = mixer->chip;
> 
> An unneeded blank line.  There are a few other coding style issues, as
> it seems.  Please correct the errors reported by checkpatch.pl.
> 
> > +static int snd_bbfpro_gain_put(struct snd_kcontrol *kcontrol,
> > +                               struct snd_ctl_elem_value *ucontrol)
> > +{
> > +	int pv, channel, old_value, value, err;
> > +
> > +	struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol);
> > +	struct usb_mixer_interface *mixer = list->mixer;
> > +
> > +	pv = kcontrol->private_value;
> > +	channel = (pv >> SND_BBFPRO_GAIN_CHANNEL_SHIFT) &
> > +		  SND_BBFPRO_GAIN_CHANNEL_MASK;
> > +	old_value = pv & SND_BBFPRO_GAIN_VAL_MASK;
> > +	value = ucontrol->value.integer.value[0];
> > +
> > +	if (channel < 2) {
> > +		if (value > SND_BBFPRO_GAIN_VAL_MIC_MAX)
> > +			return -EINVAL;
> 
> Also check an invalid negative value, too.

Last but not least: when you resubmit, please send to
linux-sound@vger.kernel.org and Cc to me, instead of alsa-devel ML.
That's the new official ML for kernel patches.


thanks,

Takashi

      reply	other threads:[~2024-08-06 14:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-02 14:24 [PATCH] ALSA: usb-audio: Add input gain and master output mixer controls for RME Babyface Pro Stefan Stistrup
2024-08-06 10:37 ` Takashi Iwai
2024-08-06 14:21   ` Takashi Iwai [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=87mslp91gv.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=sstistrup@gmail.com \
    /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