mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ASoC: omap-mcbsp: Check mcbsp->id instead of cpu_dai->id when adding ST controls
In ddevice tree booted kernel all device have unique name and their device id is set to 0. Use the mcbsp->id for checking to decide which control set we should add for McBSP sidetone handling. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
eda21d37eb
commit
28739dfcff
@ -722,7 +722,7 @@ int omap_mcbsp_st_add_controls(struct snd_soc_pcm_runtime *rtd)
|
||||
if (!mcbsp->st_data)
|
||||
return -ENODEV;
|
||||
|
||||
switch (cpu_dai->id) {
|
||||
switch (mcbsp->id) {
|
||||
case 2: /* McBSP 2 */
|
||||
return snd_soc_add_dai_controls(cpu_dai,
|
||||
omap_mcbsp2_st_controls,
|
||||
|
Loading…
Reference in New Issue
Block a user