Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: pxa: merge DAI call back functions into ops

ALSA SoC merges DAI call backs into .ops.
This patch merge these into one.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202308151142.hoM5o9LV-lkp@intel.com/
Fixes: 446b31e89493 ("ASoC: soc-dai.h: remove unused call back functions")
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/878ra3ubid.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Kuninori Morimoto and committed by
Mark Brown
2cbd5304 4244cf39

+2 -2
+2 -2
sound/soc/pxa/pxa2xx-i2s.c
··· 329 329 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000) 330 330 331 331 static const struct snd_soc_dai_ops pxa_i2s_dai_ops = { 332 + .probe = pxa2xx_i2s_probe, 333 + .remove = pxa2xx_i2s_remove, 332 334 .startup = pxa2xx_i2s_startup, 333 335 .shutdown = pxa2xx_i2s_shutdown, 334 336 .trigger = pxa2xx_i2s_trigger, ··· 340 338 }; 341 339 342 340 static struct snd_soc_dai_driver pxa_i2s_dai = { 343 - .probe = pxa2xx_i2s_probe, 344 - .remove = pxa2xx_i2s_remove, 345 341 .playback = { 346 342 .channels_min = 2, 347 343 .channels_max = 2,