From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vinod Koul Subject: Re: [PATCH 2/2] ASoC: Call snd_soc_set_dmi_name() unconditionally Date: Mon, 24 Apr 2017 10:17:45 +0530 Message-ID: <20170424044745.GE6263@localhost> References: <20170421155525.15012-1-tiwai@suse.de> <20170421155525.15012-2-tiwai@suse.de> 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 827AA266C6A for ; Mon, 24 Apr 2017 06:46:01 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20170421155525.15012-2-tiwai@suse.de> 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: Liam Girdwood , alsa-devel@alsa-project.org, Mark Brown , Jie Yang , Pierre-Louis Bossart List-Id: alsa-devel@alsa-project.org On Fri, Apr 21, 2017 at 05:55:25PM +0200, Takashi Iwai wrote: > Since recently UCM can pick up a configuration specific to the board > via card longname field, and we introduced a helper function > snd_soc_set_dmi_name() for that. So far, it was used only in one > place (sound/soc/intel/boards/broadwell.c), but it should be more > widely applied. > > This patch puts a big hammer for that: it lets snd_soc_register_card() > calling snd_soc_set_dmi_name() unconditionally, so that all x86 > devices get the better longname string. This would have no impact for > other systems without DMI support, as snd_soc_set_dmi_name() is no-op > on them. > > Signed-off-by: Takashi Iwai > --- > sound/soc/intel/boards/broadwell.c | 3 --- > sound/soc/soc-core.c | 3 +++ > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/sound/soc/intel/boards/broadwell.c b/sound/soc/intel/boards/broadwell.c > index faf865bb1765..6dcbbcefc25b 100644 > --- a/sound/soc/intel/boards/broadwell.c > +++ b/sound/soc/intel/boards/broadwell.c > @@ -269,9 +269,6 @@ static struct snd_soc_card broadwell_rt286 = { > static int broadwell_audio_probe(struct platform_device *pdev) > { > broadwell_rt286.dev = &pdev->dev; > - > - snd_soc_set_dmi_name(&broadwell_rt286, NULL); > - > return devm_snd_soc_register_card(&pdev->dev, &broadwell_rt286); > } > > diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c > index aac73ff8a92a..6536eccdafae 100644 > --- a/sound/soc/soc-core.c > +++ b/sound/soc/soc-core.c > @@ -2192,6 +2192,9 @@ static int snd_soc_instantiate_card(struct snd_soc_card *card) > snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes, > card->num_of_dapm_routes); > > + /* try to set some sane longname if DMI is available */ > + snd_soc_set_dmi_name(card); This is missing NULL as second arg. -- ~Vinod