]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
wcn36xx: Ensure spaces between functions
authorBryan O'Donoghue <bryan.odonoghue@linaro.org>
Mon, 21 Sep 2020 13:21:21 +0000 (16:21 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 22 Sep 2020 07:40:02 +0000 (10:40 +0300)
This is a small update to fix an error I saw where a few functions do not
have a blank line in between them.

Affects smd.c and main.c - no logic is affected by this change.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200910150845.2179320-3-bryan.odonoghue@linaro.org
drivers/net/wireless/ath/wcn36xx/main.c
drivers/net/wireless/ath/wcn36xx/smd.c

index 43596b919ed7822bd8ca98d7519245df0a4c5068..706728fba72d7d0534479c08a6b85b061bcc853c 100644 (file)
@@ -775,6 +775,7 @@ static void wcn36xx_update_allowed_rates(struct ieee80211_sta *sta,
                                sta->vht_cap.vht_mcs.tx_mcs_map;
        }
 }
+
 void wcn36xx_set_default_rates(struct wcn36xx_hal_supported_rates *rates)
 {
        u16 ofdm_rates[WCN36XX_HAL_NUM_OFDM_RATES] = {
index bccdae62ffbc9d09c8b1380d55da60c907ff96ed..766400f7b61c152d18e231ebe9a37e43a96cac16 100644 (file)
@@ -218,6 +218,7 @@ static inline u8 is_cap_supported(unsigned long caps, unsigned long flag)
 {
        return caps & flag ? 1 : 0;
 }
+
 static void wcn36xx_smd_set_bss_ht_params(struct ieee80211_vif *vif,
                struct ieee80211_sta *sta,
                struct wcn36xx_hal_config_bss_params *bss_params)
@@ -2191,6 +2192,7 @@ out:
        mutex_unlock(&wcn->hal_mutex);
        return ret;
 }
+
 int wcn36xx_smd_set_power_params(struct wcn36xx *wcn, bool ignore_dtim)
 {
        struct wcn36xx_hal_set_power_params_req_msg msg_body;
@@ -2220,6 +2222,7 @@ out:
        mutex_unlock(&wcn->hal_mutex);
        return ret;
 }
+
 /* Notice: This function should be called after associated, or else it
  * will be invalid
  */
@@ -2899,6 +2902,7 @@ static void wcn36xx_ind_smd_work(struct work_struct *work)
                kfree(hal_ind_msg);
        }
 }
+
 int wcn36xx_smd_open(struct wcn36xx *wcn)
 {
        wcn->hal_ind_wq = create_freezable_workqueue("wcn36xx_smd_ind");