[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ac4db632b6c944dcb2179089076b7871@BY2PR0301MB0613.namprd03.prod.outlook.com>
Date: Mon, 1 Sep 2014 07:48:34 +0000
From: "Li.Xiubo@...escale.com" <Li.Xiubo@...escale.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@...il.com>
CC: "broonie@...nel.org" <broonie@...nel.org>,
"lgirdwood@...il.com" <lgirdwood@...il.com>,
"perex@...ex.cz" <perex@...ex.cz>, "tiwai@...e.de" <tiwai@...e.de>,
"kuninori.morimoto.gx@...esas.com" <kuninori.morimoto.gx@...esas.com>,
"moinejf@...e.fr" <moinejf@...e.fr>,
"andrew@...n.ch" <andrew@...n.ch>, "jsarha@...com" <jsarha@...com>,
"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"linux-sh@...r.kernel.org" <linux-sh@...r.kernel.org>,
"alsa-devel@...a-project.org" <alsa-devel@...a-project.org>,
Shawn Guo <Shawn.Guo@...escale.com>,
"Nicolin Chen" <nicoleotsuka@...il.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [alsa-devel] [PATCHv1 1/7] ASoC: simple-card: Merge single and
muti DAI link code.
> Hi Xiubo
>
> Thank you for your patch.
> This clean-up is very nice for me.
> But, I have 1 small comment
>
> > asoc_simple_card_sub_parse_of(struct device_node *np,
> > struct asoc_simple_dai *dai,
> > struct device_node **p_node,
> > - const char **name)
> > + const char **name,
> > + unsigned int *daifmt)
> > {
> > struct device_node *node;
> > struct clk *clk;
> > u32 val;
> > int ret;
> >
> > + if (!daifmt)
> > + return -EINVAL;
> > +
> > + /*
> > + * Parse format, bitclock-inversion and frame-inversion
> > + * for DAI each device.
> > + */
> > + *daifmt = snd_soc_of_parse_daifmt(np, NULL, NULL, NULL);
> > + *daifmt &= ~(SND_SOC_DAIFMT_MASTER_MASK | SND_SOC_DAIFMT_FORMAT_MASK);
> (snip)
> > ret = asoc_simple_card_sub_parse_of(np, &dai_props->cpu_dai,
> > &dai_link->cpu_of_node,
> > - &dai_link->cpu_dai_name);
> > + &dai_link->cpu_dai_name,
> > + &daifmt);
> (snip)
> > + dai_props->cpu_dai.fmt |= daifmt;
> (snip)
> > ret = asoc_simple_card_sub_parse_of(np, &dai_props->codec_dai,
> > &dai_link->codec_of_node,
> > - &dai_link->codec_dai_name);
> > + &dai_link->codec_dai_name,
> > + &daifmt);
> (snip)
> > + dai_props->codec_dai.fmt |= daifmt;
>
> These are using
>
> asoc_simple_card_sub_parse_of(np, &dai_props->cpu_dai, xxx)
> asoc_simple_card_sub_parse_of(np, &dai_props->codec_dai, xxx)
>
> I guess, asoc_simple_card_sub_parse_of() can update
> below inside function
>
> dai_props->cpu_dai.fmt |= daifmt;
> dai_props->codec_dai.fmt |= daifmt;
>
>
Yes, yes, that's very well.
Thanks very much for you advice.
For some reason I must resent this patch series, and then I will
fix this together.
BRs
Xiubo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists