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

Commit 1764ddc2 authored by Gidon Studinski's avatar Gidon Studinski
Browse files

msm: ipa: fix static analysis sign issue



curr variable should be unsigned as it is used as an index into an array.

Change-Id: I4ffa0839ee7d5404974986ceffdb9f423712022f
Signed-off-by: default avatarGidon Studinski <gidons@codeaurora.org>
parent e24f8089
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -516,7 +516,7 @@ struct ipa_gsi_ep_mem_info {

struct ipa3_status_stats {
	struct ipahal_pkt_status status[IPA_MAX_STATUS_STAT_NUM];
	int curr;
	unsigned int curr;
};

/**