[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <6c6585b8-e359-2ca8-69e1-d17cd7dbc646@linux.intel.com>
Date: Fri, 13 Mar 2020 11:21:53 -0500
From: Pierre-Louis Bossart <pierre-louis.bossart@...ux.intel.com>
To: Amadeusz Sławiński
<amadeuszx.slawinski@...ux.intel.com>, alsa-devel@...a-project.org
Cc: Cezary Rojewski <cezary.rojewski@...el.com>, tiwai@...e.de,
Jie Yang <yang.jie@...ux.intel.com>,
Takashi Iwai <tiwai@...e.com>,
Mac Chiang <mac.chiang@...el.com>,
srinivas.kandagatla@...aro.org, jank@...ence.com,
Amery Song <chao.song@...el.com>,
Bard liao <yung-chuan.liao@...ux.intel.com>,
Pan Xiuli <xiuli.pan@...ux.intel.com>,
Hui Wang <hui.wang@...onical.com>,
Ranjani Sridharan <ranjani.sridharan@...ux.intel.com>,
Rander Wang <rander.wang@...ux.intel.com>,
slawomir.blauciak@...el.com, broonie@...nel.org,
Christophe JAILLET <christophe.jaillet@...adoo.fr>,
Sathyanarayana Nujella <sathyanarayana.nujella@...el.com>,
Naveen Manohar <naveen.m@...el.com>,
gregkh@...uxfoundation.org, Liam Girdwood <lgirdwood@...il.com>,
linux-kernel@...r.kernel.org, vkoul@...nel.org,
Sathya Prakash M R <sathya.prakash.m.r@...el.com>
Subject: Re: [PATCH 01/10] ASoC: soc-acpi: expand description of _ADR-based
devices
>> static const struct snd_soc_acpi_link_adr icl_3_in_1_default[] = {
>> {
>> .mask = BIT(0),
>> .num_adr = ARRAY_SIZE(rt711_0_adr),
>> - .adr = rt711_0_adr,
>> + .adr_d = rt711_0_adr,
>> },
>> {
>> .mask = BIT(1),
>> - .num_adr = ARRAY_SIZE(rt1308_1_adr),
>> - .adr = rt1308_1_adr,
>> + .num_adr = ARRAY_SIZE(rt1308_1_group1_adr),
>> + .adr_d = rt1308_1_adr,
>
> Is this right, you use different struct in ARRAY_SIZE and assignment?
>
>> },
>> {
>> .mask = BIT(2),
>> - .num_adr = ARRAY_SIZE(rt1308_2_adr),
>> - .adr = rt1308_2_adr,
>> + .num_adr = ARRAY_SIZE(rt1308_2_group1_adr),
>> + .adr_d = rt1308_2_adr,
>
> Same here.
it's of course an editing issue, thanks for spotting this.
it should be the exact same things as the structure used for cml:
static const struct snd_soc_acpi_link_adr cml_3_in_1_default[] = {
{
.mask = BIT(0),
.num_adr = ARRAY_SIZE(rt711_0_adr),
.adr_d = rt711_0_adr,
},
{
.mask = BIT(1),
.num_adr = ARRAY_SIZE(rt1308_1_group1_adr),
.adr_d = rt1308_1_group1_adr,
},
{
.mask = BIT(2),
.num_adr = ARRAY_SIZE(rt1308_2_group1_adr),
.adr_d = rt1308_2_group1_adr,
},
{
.mask = BIT(3),
.num_adr = ARRAY_SIZE(rt715_3_adr),
l .adr_d = rt715_3_adr,
},
{}
};
Powered by blists - more mailing lists