diff options
Diffstat (limited to 'sound/soc/intel/boards/broadwell.c')
| -rw-r--r-- | sound/soc/intel/boards/broadwell.c | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/sound/soc/intel/boards/broadwell.c b/sound/soc/intel/boards/broadwell.c index db7e1e87156d..b9c12e24c70b 100644 --- a/sound/soc/intel/boards/broadwell.c +++ b/sound/soc/intel/boards/broadwell.c @@ -164,6 +164,14 @@ SND_SOC_DAILINK_DEF(platform,  SND_SOC_DAILINK_DEF(codec,  	DAILINK_COMP_ARRAY(COMP_CODEC("i2c-INT343A:00", "rt286-aif1"))); +#if IS_ENABLED(CONFIG_SND_SOC_SOF_BROADWELL) +SND_SOC_DAILINK_DEF(ssp0_port, +	    DAILINK_COMP_ARRAY(COMP_CPU("ssp0-port"))); +#else +SND_SOC_DAILINK_DEF(ssp0_port, +	    DAILINK_COMP_ARRAY(COMP_DUMMY())); +#endif +  /* broadwell digital audio interface glue - connects codec <--> CPU */  static struct snd_soc_dai_link broadwell_rt286_dais[] = {  	/* Front End DAI links */ @@ -218,7 +226,7 @@ static struct snd_soc_dai_link broadwell_rt286_dais[] = {  		.ops = &broadwell_rt286_ops,  		.dpcm_playback = 1,  		.dpcm_capture = 1, -		SND_SOC_DAILINK_REG(dummy, codec, dummy), +		SND_SOC_DAILINK_REG(ssp0_port, codec, platform),  	},  };  |