linux/sound/soc/sof/sof-of-dev.c

// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
//
// Copyright 2019 NXP
//
// Author: Daniel Baluta <[email protected]>
//

#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();