Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

wifi: iwlwifi: remove the mvm prefix from iwl_mvm_aux_sta_cmd

This is a firmware command and is not specific to the iwlmvm op_mode

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20250119210104.276658439163.I70641851f9e5210ec3a7033db38a45d24814083b@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>

authored by

Emmanuel Grumbach and committed by
Johannes Berg
3d4b0f0c 55e52a3b

+4 -4
+3 -3
drivers/net/wireless/intel/iwlwifi/fw/api/mac-cfg.h
··· 46 46 */ 47 47 STA_CONFIG_CMD = 0xA, 48 48 /** 49 - * @AUX_STA_CMD: &struct iwl_mvm_aux_sta_cmd 49 + * @AUX_STA_CMD: &struct iwl_aux_sta_cmd 50 50 */ 51 51 AUX_STA_CMD = 0xB, 52 52 /** ··· 641 641 } __packed; /* STA_CMD_API_S_VER_1 */ 642 642 643 643 /** 644 - * struct iwl_mvm_aux_sta_cmd - command for AUX STA configuration 644 + * struct iwl_aux_sta_cmd - command for AUX STA configuration 645 645 * ( AUX_STA_CMD = 0xB ) 646 646 * 647 647 * @sta_id: index of aux sta to configure ··· 649 649 * @mac_addr: mac addr of the auxilary sta 650 650 * @reserved_for_mac_addr: reserved 651 651 */ 652 - struct iwl_mvm_aux_sta_cmd { 652 + struct iwl_aux_sta_cmd { 653 653 __le32 sta_id; 654 654 __le32 lmac_id; 655 655 u8 mac_addr[ETH_ALEN];
+1 -1
drivers/net/wireless/intel/iwlwifi/mvm/mld-sta.c
··· 121 121 { 122 122 int ret; 123 123 124 - struct iwl_mvm_aux_sta_cmd cmd = { 124 + struct iwl_aux_sta_cmd cmd = { 125 125 .sta_id = cpu_to_le32(sta->sta_id), 126 126 .lmac_id = cpu_to_le32(lmac_id), 127 127 };