mirror of https://gitee.com/openkylin/linux.git
staging: wilc1000: use int instead of int8_t
This patch replaces int8_t with int. The int8_t should be int. It's used as an index into an array or -1 for not found. Suggested-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5cc59d299f
commit
a74cc6b8d8
|
@ -263,9 +263,9 @@ static void clear_duringIP(unsigned long arg)
|
|||
g_obtainingIP = false;
|
||||
}
|
||||
|
||||
int8_t is_network_in_shadow(tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid)
|
||||
int is_network_in_shadow(tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid)
|
||||
{
|
||||
int8_t state = -1;
|
||||
int state = -1;
|
||||
int i;
|
||||
|
||||
if (u32LastScannedNtwrksCountShadow == 0) {
|
||||
|
@ -288,7 +288,7 @@ int8_t is_network_in_shadow(tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid)
|
|||
|
||||
void add_network_to_shadow(tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid, void *pJoinParams)
|
||||
{
|
||||
int8_t ap_found = is_network_in_shadow(pstrNetworkInfo, pUserVoid);
|
||||
int ap_found = is_network_in_shadow(pstrNetworkInfo, pUserVoid);
|
||||
u32 ap_index = 0;
|
||||
u8 rssi_index = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue