mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 09:20:13 -04:00
ASoC: spear: spdif_in: Move DAI probe callback to snd_soc_dai_ops
The .probe callback is no longer part of struct snd_soc_dai_driver and is now provided through struct snd_soc_dai_ops. Move spdif_in_dai_probe() accordingly so the driver follows the current ASoC API and builds correctly on modern kernels. Signed-off-by: bui duc phuc <phucduc.bui@gmail.com> Link: https://patch.msgid.link/20260730095407.33894-4-phucduc.bui@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
@@ -150,12 +150,12 @@ static int spdif_in_trigger(struct snd_pcm_substream *substream, int cmd,
|
||||
|
||||
static const struct snd_soc_dai_ops spdif_in_dai_ops = {
|
||||
.shutdown = spdif_in_shutdown,
|
||||
.probe = spdif_in_dai_probe,
|
||||
.trigger = spdif_in_trigger,
|
||||
.hw_params = spdif_in_hw_params,
|
||||
};
|
||||
|
||||
static struct snd_soc_dai_driver spdif_in_dai = {
|
||||
.probe = spdif_in_dai_probe,
|
||||
.capture = {
|
||||
.channels_min = 2,
|
||||
.channels_max = 2,
|
||||
|
||||
Reference in New Issue
Block a user