#include <linux/firmware.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/pm_runtime.h>
#include <sound/sof.h>
#include "sof-of-dev.h"
#include "ops.h"
static char *fw_path;
module_param(fw_path, charp, 0444);
MODULE_PARM_DESC(…) …;
static char *tplg_path;
module_param(tplg_path, charp, 0444);
MODULE_PARM_DESC(…) …;
const struct dev_pm_ops sof_of_pm = …;
EXPORT_SYMBOL(…);
static void sof_of_probe_complete(struct device *dev)
{ … }
int sof_of_probe(struct platform_device *pdev)
{ … }
EXPORT_SYMBOL(…);
void sof_of_remove(struct platform_device *pdev)
{ … }
EXPORT_SYMBOL(…);
void sof_of_shutdown(struct platform_device *pdev)
{ … }
EXPORT_SYMBOL(…);
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;