wifi: rtl8xxxu: fix mixed declarations in rtl8xxxu_set_aifs()
authorShiji Yang <yangshiji66@outlook.com>
Fri, 23 Feb 2024 13:34:32 +0000 (21:34 +0800)
committerKalle Valo <kvalo@kernel.org>
Wed, 28 Feb 2024 11:37:59 +0000 (13:37 +0200)
Moving struct ieee80211_sta *sta variable definition to the front
of the code to fix the ISO C90 forbids mixed declarations and code
warning.

Fixes: 43532c050f8e ("wifi: rtl8xxxu: support multiple interfaces in set_aifs()")
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Reviewed-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://msgid.link/TYAP286MB03157A408E0D69F2F6FBD88ABC552@TYAP286MB0315.JPNP286.PROD.OUTLOOK.COM
drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c

index efddbe402f0dd3195f51733b27c2a85f8efe71fc..4a49f8f9d80f2769a56dd56591a7373ea162028f 100644 (file)
@@ -4919,11 +4919,11 @@ static void rtl8xxxu_set_aifs(struct rtl8xxxu_priv *priv, u8 slot_time)
        int i;
 
        for (i = 0; i < ARRAY_SIZE(priv->vifs); i++) {
+               struct ieee80211_sta *sta;
+
                if (!priv->vifs[i])
                        continue;
 
-               struct ieee80211_sta *sta;
-
                rcu_read_lock();
                sta = ieee80211_find_sta(priv->vifs[i], priv->vifs[i]->bss_conf.bssid);
                if (sta)