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:
Gidon Studinski 2016-09-14 10:23:18 +03:00 committed by Gerrit - the friendly Code Review server
parent 4e2a8a0fa1
commit 9dc2df841d

View file

@ -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;
}; };
/** /**