提交 2ac885f4 编写于 作者: D Dan Carpenter 提交者: Luca Coelho

iwlwifi: mvm: clean up indenting in iwl_mvm_tlc_update_notif()

These lines need to be indented one more tab.
Signed-off-by: NDan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/20211110080922.GF5176@kiliSigned-off-by: NLuca Coelho <luciano.coelho@intel.com>
上级 18c11e2f
...@@ -315,18 +315,19 @@ void iwl_mvm_tlc_update_notif(struct iwl_mvm *mvm, ...@@ -315,18 +315,19 @@ void iwl_mvm_tlc_update_notif(struct iwl_mvm *mvm,
if (flags & IWL_TLC_NOTIF_FLAG_RATE) { if (flags & IWL_TLC_NOTIF_FLAG_RATE) {
char pretty_rate[100]; char pretty_rate[100];
if (iwl_fw_lookup_notif_ver(mvm->fw, DATA_PATH_GROUP, if (iwl_fw_lookup_notif_ver(mvm->fw, DATA_PATH_GROUP,
TLC_MNG_UPDATE_NOTIF, 0) < 3) { TLC_MNG_UPDATE_NOTIF, 0) < 3) {
rs_pretty_print_rate_v1(pretty_rate, sizeof(pretty_rate), rs_pretty_print_rate_v1(pretty_rate,
le32_to_cpu(notif->rate)); sizeof(pretty_rate),
IWL_DEBUG_RATE(mvm, le32_to_cpu(notif->rate));
"Got rate in old format. Rate: %s. Converting.\n", IWL_DEBUG_RATE(mvm,
pretty_rate); "Got rate in old format. Rate: %s. Converting.\n",
lq_sta->last_rate_n_flags = pretty_rate);
iwl_new_rate_from_v1(le32_to_cpu(notif->rate)); lq_sta->last_rate_n_flags =
} else { iwl_new_rate_from_v1(le32_to_cpu(notif->rate));
lq_sta->last_rate_n_flags = le32_to_cpu(notif->rate); } else {
} lq_sta->last_rate_n_flags = le32_to_cpu(notif->rate);
}
rs_pretty_print_rate(pretty_rate, sizeof(pretty_rate), rs_pretty_print_rate(pretty_rate, sizeof(pretty_rate),
lq_sta->last_rate_n_flags); lq_sta->last_rate_n_flags);
IWL_DEBUG_RATE(mvm, "new rate: %s\n", pretty_rate); IWL_DEBUG_RATE(mvm, "new rate: %s\n", pretty_rate);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册