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

Commit 92fa5bc4 authored by Raghavendar rao l's avatar Raghavendar rao l
Browse files

msm: ipa: Issue with Pointer type conversion.



Updated the pointer type cast with valid data type.

Change-Id: Ibd1f87eab0aac78551f307534508cfa84eae988a
Signed-off-by: default avatarRaghavendar rao l <rlomte@codeaurora.org>
parent 04a5cec7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -225,7 +225,7 @@ static struct ipahal_stats_init_pyld *ipahal_generate_init_pyld_flt_rt_v4_5(
	void *params, bool is_atomic_ctx)
{
	struct ipahal_stats_init_pyld *pyld;
	int num = (int)(params);
	int num = *((int *)(params));

	if (num > IPA_MAX_FLT_RT_CNT_INDEX ||
		num <= 0) {