mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 07:33:19 +02:00
wifi: iwlwifi: s/iwl_mvm_remove_sta_cmd/iwl_remove_sta_cmd
This is not mvm specific. Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Link: https://patch.msgid.link/20240901071542.57efe93c2702.I4619885f691cc295cc440a62f23405392da338f4@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
07aeccf161
commit
530addf2d2
|
|
@ -50,7 +50,7 @@ enum iwl_mac_conf_subcmd_ids {
|
|||
*/
|
||||
AUX_STA_CMD = 0xB,
|
||||
/**
|
||||
* @STA_REMOVE_CMD: &struct iwl_mvm_remove_sta_cmd
|
||||
* @STA_REMOVE_CMD: &struct iwl_remove_sta_cmd
|
||||
*/
|
||||
STA_REMOVE_CMD = 0xC,
|
||||
/**
|
||||
|
|
@ -636,13 +636,13 @@ struct iwl_mvm_aux_sta_cmd {
|
|||
} __packed; /* AUX_STA_CMD_API_S_VER_1 */
|
||||
|
||||
/**
|
||||
* struct iwl_mvm_remove_sta_cmd - a cmd structure to remove a sta added by
|
||||
* struct iwl_remove_sta_cmd - a cmd structure to remove a sta added by
|
||||
* STA_CONFIG_CMD or AUX_STA_CONFIG_CMD
|
||||
* ( STA_REMOVE_CMD = 0xC )
|
||||
*
|
||||
* @sta_id: index of station to remove
|
||||
*/
|
||||
struct iwl_mvm_remove_sta_cmd {
|
||||
struct iwl_remove_sta_cmd {
|
||||
__le32 sta_id;
|
||||
} __packed; /* REMOVE_STA_API_S_VER_1 */
|
||||
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ static int iwl_mvm_mld_add_int_sta_to_fw(struct iwl_mvm *mvm,
|
|||
*/
|
||||
static int iwl_mvm_mld_rm_sta_from_fw(struct iwl_mvm *mvm, u32 sta_id)
|
||||
{
|
||||
struct iwl_mvm_remove_sta_cmd rm_sta_cmd = {
|
||||
struct iwl_remove_sta_cmd rm_sta_cmd = {
|
||||
.sta_id = cpu_to_le32(sta_id),
|
||||
};
|
||||
int ret;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user