#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <sound/soc.h>
static const struct snd_soc_dapm_widget bt_sco_widgets[] = …;
static const struct snd_soc_dapm_route bt_sco_routes[] = …;
static struct snd_soc_dai_driver bt_sco_dai[] = …;
static const struct snd_soc_component_driver soc_component_dev_bt_sco = …;
static int bt_sco_probe(struct platform_device *pdev)
{ … }
static const struct platform_device_id bt_sco_driver_ids[] = …;
MODULE_DEVICE_TABLE(platform, bt_sco_driver_ids);
#if defined(CONFIG_OF)
static const struct of_device_id bt_sco_codec_of_match[] = …;
MODULE_DEVICE_TABLE(of, bt_sco_codec_of_match);
#endif
static struct platform_driver bt_sco_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;