From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Subhransu S. Prusty" Subject: Re: [PATCH 01/12] ALSA: hdac: Add codec helper library Date: Mon, 29 Aug 2016 18:17:33 +0530 Message-ID: <20160829124714.GA28002@subhransu-desktop> References: <1472451806-10605-1-git-send-email-subhransu.s.prusty@intel.com> <1472451806-10605-2-git-send-email-subhransu.s.prusty@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by alsa0.perex.cz (Postfix) with ESMTP id 0982D26755D for ; Mon, 29 Aug 2016 19:06:34 +0200 (CEST) Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Takashi Iwai Cc: patches.audio@intel.com, Vinod Koul , alsa-devel@alsa-project.org, broonie@kernel.org, lgirdwood@gmail.com List-Id: alsa-devel@alsa-project.org On Mon, Aug 29, 2016 at 10:41:22AM +0200, Takashi Iwai wrote: > On Mon, 29 Aug 2016 08:23:15 +0200, > Subhransu S. Prusty wrote: > > > > Add hdac helpers to enumerate the HDA widgets and fill connection > > lists for each. > > > > Signed-off-by: Subhransu S. Prusty > > Signed-off-by: Vinod Koul > > --- > > include/sound/hdaudio.h | 1 + > > sound/hda/ext/Makefile | 3 +- > > sound/hda/ext/hdac_codec.c | 182 +++++++++++++++++++++++++++++++++++++++++++++ > > sound/hda/ext/hdac_codec.h | 53 +++++++++++++ > > 4 files changed, 238 insertions(+), 1 deletion(-) > > create mode 100644 sound/hda/ext/hdac_codec.c > > create mode 100644 sound/hda/ext/hdac_codec.h > > > > diff --git a/include/sound/hdaudio.h b/include/sound/hdaudio.h > > index 93e63c5..79502dc 100644 > > --- a/include/sound/hdaudio.h > > +++ b/include/sound/hdaudio.h > > @@ -71,6 +71,7 @@ struct hdac_device { > > unsigned int flags, unsigned int *res); > > > > /* widgets */ > > + struct list_head widget_list; > > unsigned int num_nodes; > > hda_nid_t start_nid, end_nid; > > Any reason to add this to hdac_device although it's used only by > hda/ext? Hi Takashi, Added this in the hdac_device, as this looked to be the more suitable data structure for the widget_list and is more specific to the hdac device. Regards, Subhransu > > > thanks, > > Takashi --