*/
        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,
        /**
 } __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 */
 
 
  */
 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;