wcn36xx: Ensure spaces between functions
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
This commit is contained in:
parent
7f885b0bdf
commit
214091517f
@ -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] = {
|
||||
|
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user