linux/sound/soc/sof/loader.c

// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
//
// This file is provided under a dual BSD/GPLv2 license.  When using or
// redistributing this file, you may do so under either license.
//
// Copyright(c) 2018 Intel Corporation
//
// Author: Liam Girdwood <[email protected]>
//
// Generic firmware loader.
//

#include <linux/firmware.h>
#include "sof-priv.h"
#include "ops.h"

int snd_sof_load_firmware_raw(struct snd_sof_dev *sdev)
{}
EXPORT_SYMBOL();

int snd_sof_load_firmware_memcpy(struct snd_sof_dev *sdev)
{}
EXPORT_SYMBOL();

int snd_sof_run_firmware(struct snd_sof_dev *sdev)
{}
EXPORT_SYMBOL();

void snd_sof_fw_unload(struct snd_sof_dev *sdev)
{}
EXPORT_SYMBOL();