// SPDX-License-Identifier: GPL-2.0-only #include <linux/module.h> #include <sound/soc.h> static struct snd_soc_dai_driver chv3_codec_dai = …; static const struct snd_soc_component_driver soc_component_dev_chv3_codec = …; static int chv3_codec_probe(struct platform_device *pdev) { … } static const struct of_device_id chv3_codec_of_match[] = …; static struct platform_driver chv3_codec_platform_driver = …; module_platform_driver(…) …; MODULE_DESCRIPTION(…) …; MODULE_AUTHOR(…) …; MODULE_LICENSE(…) …;