Commit a35d6e2d authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: renames u8Found of connect_resp_info structure

This patch renames u8Found variable to found.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d4020763
...@@ -88,7 +88,7 @@ struct network_info { ...@@ -88,7 +88,7 @@ struct network_info {
unsigned long time_scan_cached; unsigned long time_scan_cached;
unsigned long time_scan; unsigned long time_scan;
bool new_network; bool new_network;
u8 u8Found; u8 found;
u32 u32Tsf; u32 u32Tsf;
u8 *pu8IEs; u8 *pu8IEs;
u16 u16IEsLen; u16 u16IEsLen;
......
...@@ -235,7 +235,7 @@ static void refresh_scan(void *user_void, u8 all, bool direct_scan) ...@@ -235,7 +235,7 @@ static void refresh_scan(void *user_void, u8 all, bool direct_scan)
network_info = &last_scanned_shadow[i]; network_info = &last_scanned_shadow[i];
if (!network_info->u8Found || all) { if (!network_info->found || all) {
s32 freq; s32 freq;
struct ieee80211_channel *channel; struct ieee80211_channel *channel;
...@@ -269,7 +269,7 @@ static void reset_shadow_found(void) ...@@ -269,7 +269,7 @@ static void reset_shadow_found(void)
int i; int i;
for (i = 0; i < last_scanned_cnt; i++) for (i = 0; i < last_scanned_cnt; i++)
last_scanned_shadow[i].u8Found = 0; last_scanned_shadow[i].found = 0;
} }
static void update_scan_time(void) static void update_scan_time(void)
...@@ -387,7 +387,7 @@ static void add_network_to_shadow(struct network_info *pstrNetworkInfo, ...@@ -387,7 +387,7 @@ static void add_network_to_shadow(struct network_info *pstrNetworkInfo,
pstrNetworkInfo->pu8IEs, pstrNetworkInfo->u16IEsLen); pstrNetworkInfo->pu8IEs, pstrNetworkInfo->u16IEsLen);
last_scanned_shadow[ap_index].time_scan = jiffies; last_scanned_shadow[ap_index].time_scan = jiffies;
last_scanned_shadow[ap_index].time_scan_cached = jiffies; last_scanned_shadow[ap_index].time_scan_cached = jiffies;
last_scanned_shadow[ap_index].u8Found = 1; last_scanned_shadow[ap_index].found = 1;
if (ap_found != -1) if (ap_found != -1)
kfree(last_scanned_shadow[ap_index].pJoinParams); kfree(last_scanned_shadow[ap_index].pJoinParams);
last_scanned_shadow[ap_index].pJoinParams = pJoinParams; last_scanned_shadow[ap_index].pJoinParams = pJoinParams;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment