Message ID | 20201109210958.84198-1-ranjani.sridharan@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e7ee770a3f9004a5b4ddaa28ff9efe3ff3382268 |
Headers | show |
Series | ASoC: Intel: Boards: tgl_max98373: add dpcm_capture flag for speaker_smart_amp | expand |
On Mon, 9 Nov 2020 13:09:58 -0800, Ranjani Sridharan wrote: > Smart_amp_speaker device has the playback stream and capture stream > associated to it. Hence add the dpcm_capture = 1 flag while dailink > creation. > This patches fixes: > ERR kernel [timestamp] SSP1-Codec: ASoC: no backend capture stream Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: Intel: Boards: tgl_max98373: add dpcm_capture flag for speaker_smart_amp commit: e7ee770a3f9004a5b4ddaa28ff9efe3ff3382268 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/intel/boards/sof_rt5682.c b/sound/soc/intel/boards/sof_rt5682.c index e7d9a82ca70d..891f908659f5 100644 --- a/sound/soc/intel/boards/sof_rt5682.c +++ b/sound/soc/intel/boards/sof_rt5682.c @@ -734,6 +734,8 @@ static struct snd_soc_dai_link *sof_card_dai_links_create(struct device *dev, links[id].num_codecs = ARRAY_SIZE(max_98373_components); links[id].init = max98373_spk_codec_init; links[id].ops = &max_98373_ops; + /* feedback stream */ + links[id].dpcm_capture = 1; } else if (sof_rt5682_quirk & SOF_MAX98360A_SPEAKER_AMP_PRESENT) { links[id].codecs = max98360a_component;