rsi: fix indentation issue with a code block
There is a block of code that is indented at the wrong level. Fix this with extra tabbing. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
47b08e75a6
commit
34025a1056
|
@ -816,15 +816,15 @@ static void rsi_mac80211_bss_info_changed(struct ieee80211_hw *hw,
|
|||
adapter->ps_info.dtim_interval_duration = bss->dtim_period;
|
||||
adapter->ps_info.listen_interval = conf->listen_interval;
|
||||
|
||||
/* If U-APSD is updated, send ps parameters to firmware */
|
||||
if (bss->assoc) {
|
||||
if (common->uapsd_bitmap) {
|
||||
rsi_dbg(INFO_ZONE, "Configuring UAPSD\n");
|
||||
rsi_conf_uapsd(adapter, vif);
|
||||
/* If U-APSD is updated, send ps parameters to firmware */
|
||||
if (bss->assoc) {
|
||||
if (common->uapsd_bitmap) {
|
||||
rsi_dbg(INFO_ZONE, "Configuring UAPSD\n");
|
||||
rsi_conf_uapsd(adapter, vif);
|
||||
}
|
||||
} else {
|
||||
common->uapsd_bitmap = 0;
|
||||
}
|
||||
} else {
|
||||
common->uapsd_bitmap = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (changed & BSS_CHANGED_CQM) {
|
||||
|
|
Loading…
Reference in New Issue