
Switch audio drivers to SPDX identifier on msm-4.19. Change-Id: Ic3f0230a516db251b8d81e8a7e73dbc04d66fe1b Signed-off-by: Meng Wang <mengw@codeaurora.org>
20 rader
475 B
C
20 rader
475 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _WCD937X_H
|
|
#define _WCD937X_H
|
|
|
|
#ifdef CONFIG_SND_SOC_WCD937X
|
|
extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
|
|
struct snd_soc_codec *codec);
|
|
#else
|
|
extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
|
|
struct snd_soc_codec *codec)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* CONFIG_SND_SOC_WCD937X */
|
|
|
|
#endif
|