From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH - AAF PCM plugin 2/7] aaf: Load configuration parameters Date: Wed, 10 Oct 2018 12:29:50 +0200 Message-ID: References: <20181003234547.16839-1-andre.guedes@intel.com> <20181003234547.16839-3-andre.guedes@intel.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 190D82678AB for ; Wed, 10 Oct 2018 12:29:51 +0200 (CEST) In-Reply-To: <20181003234547.16839-3-andre.guedes@intel.com> 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: Andre Guedes Cc: alsa-devel@alsa-project.org, liam.r.girdwood@intel.com List-Id: alsa-devel@alsa-project.org On Thu, 04 Oct 2018 01:45:42 +0200, Andre Guedes wrote: > > This patch implements the infrastructure to load the plugin > configuration from ALSA configuration file. The configuration > is loaded in open() callback. > > All configuration parameters are described in details in doc/aaf.txt > file. > > Signed-off-by: Andre Guedes > --- > aaf/pcm_aaf.c | 131 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > doc/aaf.txt | 52 +++++++++++++++++++++++ > 2 files changed, 183 insertions(+) > > diff --git a/aaf/pcm_aaf.c b/aaf/pcm_aaf.c > index 7890e10..32db15e 100644 > --- a/aaf/pcm_aaf.c > +++ b/aaf/pcm_aaf.c > @@ -20,11 +20,138 @@ > > #include > #include > +#include > +#include Ideally these standard headers should be checked in configure script. (Not that important, though.) thanks, Takashi