android_kernel_xiaomi_sm8350/asoc/msm-pcm-routing-devdep.h
Meng Wang 43bbb87652 asoc: Update file header to GPL-2.0-only
Update file header to GPL-2.0-only.

Change-Id: Ic1542a3209a5fe73c937a5b36491ede4a451936d
Signed-off-by: Meng Wang <mengw@codeaurora.org>
2018-12-10 14:49:34 +08:00

28 lines
694 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2014-2015, 2017 The Linux Foundation. All rights reserved.
*/
#ifndef _MSM_PCM_ROUTING_DEVDEP_H_
#define _MSM_PCM_ROUTING_DEVDEP_H_
#include <sound/soc.h>
#include "msm-pcm-routing-v2.h"
#ifdef CONFIG_SND_HWDEP
int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
struct msm_pcm_routing_bdai_data *msm_bedais);
void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm);
#else
static inline int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
struct msm_pcm_routing_bdai_data *msm_bedais)
{
return 0;
}
static inline void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm)
{
}
#endif
#endif