#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/device.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/initval.h>
#include <sound/soc.h>
static const struct snd_soc_dapm_widget wm8727_dapm_widgets[] = …;
static const struct snd_soc_dapm_route wm8727_dapm_routes[] = …;
#define WM8727_RATES …
static struct snd_soc_dai_driver wm8727_dai = …;
static const struct snd_soc_component_driver soc_component_dev_wm8727 = …;
static int wm8727_probe(struct platform_device *pdev)
{ … }
static struct platform_driver wm8727_codec_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;