
<int iwl_mvm_mld_rm_sta_id(struct iwl_mvm *mvm, u8 sta_id)
<{
<	int ret = iwl_mvm_mld_rm_sta_from_fw(mvm, sta_id);
---
>int iwl_mvm_mld_rm_sta_id(struct iwl_mvm *mvm, size_t sta_id)
>{
>	if (sta_id >= IWL_MVM_STATION_COUNT)
>		return -EINVAL;
>	int ret = iwl_mvm_mld_rm_sta_from_fw(mvm, (u8)sta_id);
