iwlwifi: mvm: clean up indenting in iwl_mvm_tlc_update_notif()
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 10 Nov 2021 08:09:22 +0000 (11:09 +0300)
committerLuca Coelho <luciano.coelho@intel.com>
Tue, 21 Dec 2021 10:35:04 +0000 (12:35 +0200)
These lines need to be indented one more tab.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/20211110080922.GF5176@kili
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/rs-fw.c

index 970b92f..ba01935 100644 (file)
@@ -315,18 +315,19 @@ void iwl_mvm_tlc_update_notif(struct iwl_mvm *mvm,
        if (flags & IWL_TLC_NOTIF_FLAG_RATE) {
                char pretty_rate[100];
 
-       if (iwl_fw_lookup_notif_ver(mvm->fw, DATA_PATH_GROUP,
-                                   TLC_MNG_UPDATE_NOTIF, 0) < 3) {
-               rs_pretty_print_rate_v1(pretty_rate, sizeof(pretty_rate),
-                                       le32_to_cpu(notif->rate));
-               IWL_DEBUG_RATE(mvm,
-                              "Got rate in old format. Rate: %s. Converting.\n",
-                              pretty_rate);
-               lq_sta->last_rate_n_flags =
-                       iwl_new_rate_from_v1(le32_to_cpu(notif->rate));
-       } else {
-               lq_sta->last_rate_n_flags = le32_to_cpu(notif->rate);
-       }
+               if (iwl_fw_lookup_notif_ver(mvm->fw, DATA_PATH_GROUP,
+                                           TLC_MNG_UPDATE_NOTIF, 0) < 3) {
+                       rs_pretty_print_rate_v1(pretty_rate,
+                                               sizeof(pretty_rate),
+                                               le32_to_cpu(notif->rate));
+                       IWL_DEBUG_RATE(mvm,
+                                      "Got rate in old format. Rate: %s. Converting.\n",
+                                      pretty_rate);
+                       lq_sta->last_rate_n_flags =
+                               iwl_new_rate_from_v1(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),
                                     lq_sta->last_rate_n_flags);
                IWL_DEBUG_RATE(mvm, "new rate: %s\n", pretty_rate);