mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 12:57:06 +09:00
ASoC: stm32: fix sai driver name initialisation
commit17d3069ccfupstream. This patch fixes the sai driver structure overwriting which results in a cpu dai name equal NULL. Fixes:3e086ed("ASoC: stm32: add SAI driver") Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com> Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7d3f710707
commit
d4f1e3ef95
@@ -1194,7 +1194,6 @@ static int stm32_sai_sub_dais_init(struct platform_device *pdev,
|
||||
if (!sai->cpu_dai_drv)
|
||||
return -ENOMEM;
|
||||
|
||||
sai->cpu_dai_drv->name = dev_name(&pdev->dev);
|
||||
if (STM_SAI_IS_PLAYBACK(sai)) {
|
||||
memcpy(sai->cpu_dai_drv, &stm32_sai_playback_dai,
|
||||
sizeof(stm32_sai_playback_dai));
|
||||
@@ -1204,6 +1203,7 @@ static int stm32_sai_sub_dais_init(struct platform_device *pdev,
|
||||
sizeof(stm32_sai_capture_dai));
|
||||
sai->cpu_dai_drv->capture.stream_name = sai->cpu_dai_drv->name;
|
||||
}
|
||||
sai->cpu_dai_drv->name = dev_name(&pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user