From: Takashi Iwai <tiwai@suse.de>
To: Minjie Du <duminjie@vivo.com>
Cc: Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Stephen Rothwell <sfr@canb.auug.org.au>,
alsa-devel@alsa-project.org (moderated list:SOUND),
linux-kernel@vger.kernel.org (open list),
opensource.kernel@vivo.com
Subject: Re: [PATCH v1] sound: riptide: Remove duplicate judgments code
Date: Tue, 04 Jul 2023 11:31:43 +0200 [thread overview]
Message-ID: <878rbw2fb4.wl-tiwai@suse.de> (raw)
In-Reply-To: <20230704091131.6662-1-duminjie@vivo.com>
On Tue, 04 Jul 2023 11:11:31 +0200,
Minjie Du wrote:
>
> Fix: delate duplicate judgments
> Could you help check it out? Thank you!
I'm afraid that it's no right fix.
The duplicated calls actually send two commands sequentially, and if
you drop one, it'll change the behavior completely.
Honestly speaking, I have no idea whether sending twice is mandatory
for this chip. It's an ugly driver by reverse engineering, so who
knows. We can get rid of it in future. But it's a different topic.
thanks,
Takashi
>
> Signed-off-by: Minjie Du <duminjie@vivo.com>
> ---
> sound/pci/riptide/riptide.c | 11 ++++-------
> 1 file changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c
> index b37c877c2..9bf4b2e86 100644
> --- a/sound/pci/riptide/riptide.c
> +++ b/sound/pci/riptide/riptide.c
> @@ -958,8 +958,7 @@ getsourcesink(struct cmdif *cif, unsigned char source, unsigned char sink,
> {
> union cmdret rptr = CMDRET_ZERO;
>
> - if (SEND_RSSV(cif, source, sink, &rptr) &&
> - SEND_RSSV(cif, source, sink, &rptr))
> + if (SEND_RSSV(cif, source, sink, &rptr))
> return -EIO;
> *a = rptr.retbytes[0];
> *b = rptr.retbytes[1];
> @@ -978,8 +977,7 @@ getsamplerate(struct cmdif *cif, unsigned char *intdec, unsigned int *rate)
> s = intdec;
> for (i = 0; i < 2; i++) {
> if (*s != 0xff) {
> - if (SEND_RSRC(cif, *s, &rptr) &&
> - SEND_RSRC(cif, *s, &rptr))
> + if (SEND_RSRC(cif, *s, &rptr))
> return -EIO;
> p[i] += rptr.retwords[1];
> p[i] *= rptr.retwords[2];
> @@ -1013,8 +1011,7 @@ setsampleformat(struct cmdif *cif,
> sig = snd_pcm_format_unsigned(format) != 0;
> order = snd_pcm_format_big_endian(format) != 0;
>
> - if (SEND_SETF(cif, mixer, w, ch, order, sig, id) &&
> - SEND_SETF(cif, mixer, w, ch, order, sig, id)) {
> + if (SEND_SETF(cif, mixer, w, ch, order, sig, id)) {
> snd_printdd("setsampleformat failed\n");
> return -EIO;
> }
> @@ -1060,7 +1057,7 @@ getmixer(struct cmdif *cif, short num, unsigned short *rval,
> {
> union cmdret rptr = CMDRET_ZERO;
>
> - if (SEND_RDGV(cif, num, num, &rptr) && SEND_RDGV(cif, num, num, &rptr))
> + if (SEND_RDGV(cif, num, num, &rptr))
> return -EIO;
> *rval = rptr.retwords[0];
> *lval = rptr.retwords[1];
> --
> 2.39.0
>
prev parent reply other threads:[~2023-07-04 9:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-04 9:11 [PATCH v1] sound: riptide: Remove duplicate judgments code Minjie Du
2023-07-04 9:31 ` 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=878rbw2fb4.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=duminjie@vivo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=opensource.kernel@vivo.com \
--cc=perex@perex.cz \
--cc=sfr@canb.auug.org.au \
--cc=tiwai@suse.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