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

Commit a526edca authored by Asish Bhattacharya's avatar Asish Bhattacharya
Browse files

apr: msm: fix compilation for non glink targets



Define proto functions for non glink targets.

Change-Id: Ie9eb32fe9af70d078d8ddc915c998d49e89b79c1
Signed-off-by: default avatarAsish Bhattacharya <asishb@codeaurora.org>
parent 7a4c37e1
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -196,6 +196,18 @@ int apr_set_q6_state(enum apr_subsys_state state);
void apr_set_subsys_state(void);
const char *apr_get_lpass_subsys_name(void);
uint16_t apr_get_reset_domain(uint16_t proc);
#ifdef CONFIG_MSM_QDSP6_APRV2_VM
static inline int apr_start_rx_rt(void *handle)
{
	return 0;
}

static inline int apr_end_rx_rt(void *handle)
{
	return 0;
}
#else
int apr_start_rx_rt(void *handle);
int apr_end_rx_rt(void *handle);
#endif
#endif