From: Takashi Iwai <tiwai@suse.de>
To: "Yang, Libin" <libin.yang@intel.com>
Cc: "Lin, Mengdong" <mengdong.lin@intel.com>,
"libin.yang@linux.intel.com" <libin.yang@linux.intel.com>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>
Subject: Re: [PATCH 2/4] ALSA: hda - add DP mst verb support
Date: Tue, 08 Mar 2016 08:39:16 +0100 [thread overview]
Message-ID: <s5hbn6p5sgr.wl-tiwai@suse.de> (raw)
In-Reply-To: <96A12704CE18D347B625EE2D4A099D190467FCCE@SHSMSX103.ccr.corp.intel.com>
On Tue, 08 Mar 2016 07:54:44 +0100,
Yang, Libin wrote:
>
> Hi Takashi,
>
> > -----Original Message-----
> > From: Takashi Iwai [mailto:tiwai@suse.de]
> > Sent: Tuesday, March 08, 2016 12:46 AM
> > To: libin.yang@linux.intel.com
> > Cc: alsa-devel@alsa-project.org; Lin, Mengdong; Yang, Libin
> > Subject: Re: [alsa-devel] [PATCH 2/4] ALSA: hda - add DP mst verb
> > support
> >
> > On Mon, 07 Mar 2016 15:57:44 +0100,
> > libin.yang@linux.intel.com wrote:
> > >
> > > +int snd_hda_set_dev_select(struct hda_codec *codec, hda_nid_t nid,
> > int dev_id)
> > > +{
> > > + int ret, dev;
> > > + unsigned long timeout;
> > > +
> > > + /* not support dp_mst will always return 0, using first dev_entry
> > */
> > > + if (!codec->dp_mst)
> > > + return 0;
> > > +
> > > + /* If Device List Length is 0, the pin is not multi stream capable.
> > > + */
> > > + if ((snd_hda_get_num_devices(codec, nid) + 1) == 0)
> > > + return 0;
> >
> > I don't understand what this code is for. Why +1?
>
> Sorry, it should be if ((snd_hda_get_num_devices(codec, nid)) == 0).
> 0 means not MST capable. Thanks for point it out.
>
> >
> > > +
> > > + /* Behavior of setting index being equal to or greater than
> > > + * Device List Length is not predictable
> > > + */
> > > + if ((snd_hda_get_num_devices(codec, nid) + 1) <= dev_id)
> > > + return 0;
> >
> > Ditto. And, calling the same function twice?
>
> (snd_hda_get_num_devices(codec, nid) + 1) means the device entry number.
> If the (snd_hda_get_num_devices(codec, nid) + 1) == 3, it means there are
> only 3 device entries. And dev_id being 0, 1, 2 is legal. It dev_id is 3 or greater,
> it is illegal.
So, shouldn't it be like below?
if (dev_id >= num_devices)
return 0;
Also my point is that you don't need to call snd_hda_get_num_devices()
twice. It can be stored locally.
Takashi
next prev parent reply other threads:[~2016-03-08 7:39 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-07 14:57 [RFC PATCH 0/4] MST DP audio support libin.yang
2016-03-07 14:57 ` [RFC PATCH 1/4] ALSA: hda - codec add DP MST support for connection list libin.yang
2016-03-07 16:40 ` Takashi Iwai
2016-03-08 6:47 ` Yang, Libin
2016-03-07 14:57 ` [PATCH 2/4] ALSA: hda - add DP mst verb support libin.yang
2016-03-07 16:45 ` Takashi Iwai
2016-03-08 6:54 ` Yang, Libin
2016-03-08 7:39 ` Takashi Iwai [this message]
2016-03-08 7:49 ` Yang, Libin
2016-03-07 14:57 ` [RFC PATCH 3/4] ALSA - hda: add devid support in acom libin.yang
2016-03-07 14:57 ` [RFC PATCH 4/4] ALSA - hda: add DP MST support libin.yang
2016-03-07 15:19 ` Takashi Iwai
2016-03-08 6:47 ` Yang, Libin
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=s5hbn6p5sgr.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=libin.yang@intel.com \
--cc=libin.yang@linux.intel.com \
--cc=mengdong.lin@intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.