#include <linux/module.h>
#include <sound/soc.h>
static const struct snd_soc_dapm_widget ak4554_dapm_widgets[] = …;
static const struct snd_soc_dapm_route ak4554_dapm_routes[] = …;
static struct snd_soc_dai_driver ak4554_dai = …;
static const struct snd_soc_component_driver soc_component_dev_ak4554 = …;
static int ak4554_soc_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id ak4554_of_match[] = …;
MODULE_DEVICE_TABLE(of, ak4554_of_match);
static struct platform_driver ak4554_driver = …;
module_platform_driver(…) …;
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;