linux/sound/soc/mediatek/common/mtk-afe-platform-driver.c

// SPDX-License-Identifier: GPL-2.0
/*
 * mtk-afe-platform-driver.c  --  Mediatek afe platform driver
 *
 * Copyright (c) 2016 MediaTek Inc.
 * Author: Garlic Tseng <[email protected]>
 */

#include <linux/module.h>
#include <linux/dma-mapping.h>
#include <sound/soc.h>

#include "mtk-afe-platform-driver.h"
#include "mtk-base-afe.h"

int mtk_afe_combine_sub_dai(struct mtk_base_afe *afe)
{}
EXPORT_SYMBOL_GPL();

int mtk_afe_add_sub_dai_control(struct snd_soc_component *component)
{}
EXPORT_SYMBOL_GPL();

snd_pcm_uframes_t mtk_afe_pcm_pointer(struct snd_soc_component *component,
				      struct snd_pcm_substream *substream)
{}
EXPORT_SYMBOL_GPL();

int mtk_afe_pcm_new(struct snd_soc_component *component,
		    struct snd_soc_pcm_runtime *rtd)
{}
EXPORT_SYMBOL_GPL();

static int mtk_afe_component_probe(struct snd_soc_component *component)
{}

const struct snd_soc_component_driver mtk_afe_pcm_platform =;
EXPORT_SYMBOL_GPL();

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();