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

Commit eba53bd2 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "apr: msm: fix compilation for non glink targets"

parents b14a8609 a526edca
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