Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb2d7598 authored by Mangesh Kunchamwar's avatar Mangesh Kunchamwar
Browse files

asoc: codecs: stub for WCD CPE core



Add stub functions for WCD CPE core APIs

Change-Id: Iddfdc8de9962d7a8d96cf7010c0b7ab18826ce37
Signed-off-by: default avatarMangesh Kunchamwar <mangeshk@codeaurora.org>
parent 8fbad90e
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -222,8 +222,22 @@ struct wcd_cpe_params {
	struct cpe_svc_init_param *cpe_svc_params;
};

#if IS_ENABLED(CONFIG_SND_SOC_WCD_CPE)
int wcd_cpe_ssr_event(void *core_handle,
		      enum wcd_cpe_ssr_state_event event);
struct wcd_cpe_core *wcd_cpe_init(const char *img_fname,
struct snd_soc_codec *codec, struct wcd_cpe_params *params);
#else /* CONFIG_SND_SOC_WCD_CPE */
static inline int wcd_cpe_ssr_event(void *core_handle,
		      enum wcd_cpe_ssr_state_event event)
{
	return 0;
}
static inline struct wcd_cpe_core *wcd_cpe_init(const char *img_fname,
						struct snd_soc_codec *codec,
						struct wcd_cpe_params *params)
{
	return NULL;
}
#endif /* CONFIG_SND_SOC_WCD_CPE */
#endif
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ CONFIG_VA_MACRO=m
CONFIG_MSM_GLINK_SPI_XPRT=m
CONFIG_WCD_DSP_GLINK=m
CONFIG_SOUNDWIRE=m
CONFIG_WCD9XXX_CODEC_CORE=m
CONFIG_SND_SOC_QDSP6V2=m
CONFIG_SND_SOC_WCD_MBHC_LEGACY=m
CONFIG_QTI_PP=m
+0 −1
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@
#define CONFIG_SND_SOC_WCD9XXX_V2 1
#define CONFIG_SND_SOC_WSA881X 1
#define CONFIG_SND_SOC_WCD_DSP_MGR 1
#define CONFIG_SND_SOC_WCD_CPE 1
#define CONFIG_SND_SOC_WCD9335 1
#define CONFIG_WCD9XXX_CODEC_CORE 1
#define CONFIG_MSM_CDC_PINCTRL 1