staging: wilc1000: rename s32Freq variable
authorLeo Kim <leo.kim@atmel.com>
Thu, 19 Nov 2015 06:56:26 +0000 (15:56 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Dec 2015 22:34:41 +0000 (14:34 -0800)
This patch renames s32Freq variable to freq to avoid camelcase.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c

index 9416644..55cf444 100644 (file)
@@ -254,12 +254,12 @@ static void refresh_scan(void *user_void, u8 all, bool direct_scan)
                network_info = &last_scanned_shadow[i];
 
                if (!network_info->u8Found || all) {
-                       s32 s32Freq;
+                       s32 freq;
                        struct ieee80211_channel *channel;
 
                        if (network_info) {
-                               s32Freq = ieee80211_channel_to_frequency((s32)network_info->u8channel, IEEE80211_BAND_2GHZ);
-                               channel = ieee80211_get_channel(wiphy, s32Freq);
+                               freq = ieee80211_channel_to_frequency((s32)network_info->u8channel, IEEE80211_BAND_2GHZ);
+                               channel = ieee80211_get_channel(wiphy, freq);
 
                                rssi = get_rssi_avg(network_info);
                                if (memcmp("DIRECT-", network_info->au8ssid, 7) ||