Unverified Commit 392cc13c authored by Jason Montleon's avatar Jason Montleon Committed by Mark Brown
Browse files

ASoC: rt5514: fix legacy dai naming

Starting with 6.0-rc1 these messages are logged and the sound card
is unavailable. Adding legacy_dai_naming to the rt5514-spi causes
it to function properly again.

[   16.928454] kbl_r5514_5663_max kbl_r5514_5663_max: ASoC: CPU DAI
spi-PRP0001:00 not registered
[   16.928561] platform kbl_r5514_5663_max: deferred probe pending

Fixes: fc34ece4 ("ASoC: Refactor non_legacy_dai_naming flag")
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=216641


Signed-off-by: default avatarJason Montleon <jmontleo@redhat.com>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20221103144612.4431-1-jmontleo@redhat.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 003b786b
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -305,6 +305,7 @@ static const struct snd_soc_component_driver rt5514_spi_component = {
	.hw_free		= rt5514_spi_hw_free,
	.pointer		= rt5514_spi_pcm_pointer,
	.pcm_construct		= rt5514_spi_pcm_new,
	.legacy_dai_naming	= 1,
};

/**