Skip to content

Commit 455fac9

Browse files
Dongyang JinMiriam-Rachel
authored andcommitted
wifi: iwlwifi: mld: fix indentation in iwl_mld_fill_supp_rates()
Fix the following inconsistent indentation warnings reported by smatch: smatch warnings: drivers/net/wireless/intel/iwlwifi/mld/tlc.c:454 iwl_mld_fill_supp_rates() warn: inconsistent indenting There's an extra tab, remove it. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202605170928.yPTN7kOn-lkp@intel.com/ Signed-off-by: Dongyang Jin <jindongyang@kylinos.cn> Link: https://patch.msgid.link/20260519060259.2327712-1-jindongyang@kylinos.cn Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
1 parent 4f479cb commit 455fac9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/net/wireless/intel/iwlwifi/mld

drivers/net/wireless/intel/iwlwifi/mld/tlc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ iwl_mld_fill_supp_rates(struct iwl_mld *mld,
451451
iwl_mld_fill_he_rates(capa, cmd);
452452
} else if (capa->vht_cap && capa->vht_cap->vht_supported) {
453453
cmd->mode = IWL_TLC_MNG_MODE_VHT;
454-
iwl_mld_fill_vht_rates(capa, cmd);
454+
iwl_mld_fill_vht_rates(capa, cmd);
455455
} else if (capa->ht_cap && capa->ht_cap->ht_supported) {
456456
cmd->mode = IWL_TLC_MNG_MODE_HT;
457457
cmd->ht_rates[IWL_TLC_NSS_1][IWL_TLC_MCS_PER_BW_80] =

0 commit comments

Comments
 (0)