From: Pierre-Louis Bossart Date: Fri, 25 Jan 2019 20:34:56 +0000 (-0600) Subject: ASoC: Intel: haswell: platform name fixup support X-Git-Tag: v5.4-rc1~1151^2~70^2~72 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e87055d732e34d8f5fa95da686958b30a03da5b4;p=platform%2Fkernel%2Flinux-rpi.git ASoC: Intel: haswell: platform name fixup support Add helper to override dailink platform name, if passed as parameter Signed-off-by: Pierre-Louis Bossart Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/boards/haswell.c b/sound/soc/intel/boards/haswell.c index a402298..971226d 100644 --- a/sound/soc/intel/boards/haswell.c +++ b/sound/soc/intel/boards/haswell.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include "../common/sst-dsp.h" @@ -189,8 +190,22 @@ static struct snd_soc_card haswell_rt5640 = { static int haswell_audio_probe(struct platform_device *pdev) { + struct snd_soc_acpi_mach *mach; + const char *platform_name = NULL; + int ret; + haswell_rt5640.dev = &pdev->dev; + /* override plaform name, if required */ + mach = (&pdev->dev)->platform_data; + if (mach) /* extra check since legacy does not pass parameters */ + platform_name = mach->mach_params.platform; + + ret = snd_soc_fixup_dai_links_platform_name(&haswell_rt5640, + platform_name); + if (ret) + return ret; + return devm_snd_soc_register_card(&pdev->dev, &haswell_rt5640); }