From: Maciej S. Szmigiero Date: Wed, 5 Aug 2015 15:22:53 +0000 (+0200) Subject: ASoC: fsl_ssi: AC'97 DAI driver needs probe method too X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=793e3e9eeffc3e270483a450bc08e60f38e401ff;p=linux-beck.git ASoC: fsl_ssi: AC'97 DAI driver needs probe method too AC'97 DAI driver struct need the same probe method as I2S one to setup DMA params in fsl_ssi driver. Signed-off-by: Maciej Szmigiero Signed-off-by: Mark Brown --- diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c index 9c46c7dc0f20..2ce9e1d77aec 100644 --- a/sound/soc/fsl/fsl_ssi.c +++ b/sound/soc/fsl/fsl_ssi.c @@ -1101,6 +1101,7 @@ static const struct snd_soc_component_driver fsl_ssi_component = { static struct snd_soc_dai_driver fsl_ssi_ac97_dai = { .bus_control = true, + .probe = fsl_ssi_dai_probe, .playback = { .stream_name = "AC97 Playback", .channels_min = 2,