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: Gidon Studinski <gidons@codeaurora.org>
This commit is contained in:
parent
4e2a8a0fa1
commit
9dc2df841d
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ struct ipa_gsi_ep_mem_info {
|
||||||
|
|
||||||
struct ipa3_status_stats {
|
struct ipa3_status_stats {
|
||||||
struct ipahal_pkt_status status[IPA_MAX_STATUS_STAT_NUM];
|
struct ipahal_pkt_status status[IPA_MAX_STATUS_STAT_NUM];
|
||||||
int curr;
|
unsigned int curr;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue