staging: wfx: change variable name to be consistent
authorJaehee Park <jhpark1013@gmail.com>
Fri, 1 Apr 2022 14:53:50 +0000 (10:53 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 4 Apr 2022 14:25:59 +0000 (16:25 +0200)
Change variable name to be consistent with the naming conventions.
ssidlen was changed to ssid_len and ssidie was changed to ssid_ie to be
consistent. This makes the variables more readable. The other ssid
names in the code are separated by an underscore. For example,
bssid_filter and num_of_ssids have the ssid separated from the rest of
the words with an underscore.

Signed-off-by: Jaehee Park <jhpark1013@gmail.com>
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20220401145350.GA45053@jaehee-ThinkPad-X1-Extreme
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wfx/hif_tx.c
drivers/staging/wfx/sta.c

index ae3cc59..9c653d0 100644 (file)
@@ -280,7 +280,7 @@ int wfx_hif_stop_scan(struct wfx_vif *wvif)
 }
 
 int wfx_hif_join(struct wfx_vif *wvif, const struct ieee80211_bss_conf *conf,
-                struct ieee80211_channel *channel, const u8 *ssid, int ssidlen)
+                struct ieee80211_channel *channel, const u8 *ssid, int ssid_len)
 {
        int ret;
        struct wfx_hif_msg *hif;
@@ -288,8 +288,8 @@ int wfx_hif_join(struct wfx_vif *wvif, const struct ieee80211_bss_conf *conf,
 
        WARN_ON(!conf->beacon_int);
        WARN_ON(!conf->basic_rates);
-       WARN_ON(sizeof(body->ssid) < ssidlen);
-       WARN(!conf->ibss_joined && !ssidlen, "joining an unknown BSS");
+       WARN_ON(sizeof(body->ssid) < ssid_len);
+       WARN(!conf->ibss_joined && !ssid_len, "joining an unknown BSS");
        if (!hif)
                return -ENOMEM;
        body->infrastructure_bss_mode = !conf->ibss_joined;
@@ -300,8 +300,8 @@ int wfx_hif_join(struct wfx_vif *wvif, const struct ieee80211_bss_conf *conf,
        body->basic_rate_set = cpu_to_le32(wfx_rate_mask_to_hw(wvif->wdev, conf->basic_rates));
        memcpy(body->bssid, conf->bssid, sizeof(body->bssid));
        if (ssid) {
-               body->ssid_length = cpu_to_le32(ssidlen);
-               memcpy(body->ssid, ssid, ssidlen);
+               body->ssid_length = cpu_to_le32(ssid_len);
+               memcpy(body->ssid, ssid, ssid_len);
        }
        wfx_fill_header(hif, wvif->id, HIF_REQ_ID_JOIN, sizeof(*body));
        ret = wfx_cmd_send(wvif->wdev, hif, NULL, 0, false);
index b1e9fb1..03025ef 100644 (file)
@@ -392,8 +392,8 @@ static void wfx_join(struct wfx_vif *wvif)
        struct ieee80211_bss_conf *conf = &wvif->vif->bss_conf;
        struct cfg80211_bss *bss = NULL;
        u8 ssid[IEEE80211_MAX_SSID_LEN];
-       const u8 *ssidie = NULL;
-       int ssidlen = 0;
+       const u8 *ssid_ie = NULL;
+       int ssid_len = 0;
 
        wfx_tx_lock_flush(wvif->wdev);
 
@@ -404,21 +404,21 @@ static void wfx_join(struct wfx_vif *wvif)
                return;
        }
 
-       rcu_read_lock(); /* protect ssidie */
+       rcu_read_lock(); /* protect ssid_ie */
        if (bss)
-               ssidie = ieee80211_bss_get_ie(bss, WLAN_EID_SSID);
-       if (ssidie) {
-               ssidlen = ssidie[1];
-               if (ssidlen > IEEE80211_MAX_SSID_LEN)
-                       ssidlen = IEEE80211_MAX_SSID_LEN;
-               memcpy(ssid, &ssidie[2], ssidlen);
+               ssid_ie = ieee80211_bss_get_ie(bss, WLAN_EID_SSID);
+       if (ssid_ie) {
+               ssid_len = ssid_ie[1];
+               if (ssid_len > IEEE80211_MAX_SSID_LEN)
+                       ssid_len = IEEE80211_MAX_SSID_LEN;
+               memcpy(ssid, &ssid_ie[2], ssid_len);
        }
        rcu_read_unlock();
 
        cfg80211_put_bss(wvif->wdev->hw->wiphy, bss);
 
        wvif->join_in_progress = true;
-       ret = wfx_hif_join(wvif, conf, wvif->channel, ssid, ssidlen);
+       ret = wfx_hif_join(wvif, conf, wvif->channel, ssid, ssid_len);
        if (ret) {
                ieee80211_connection_loss(wvif->vif);
                wfx_reset(wvif);