c
< 	int ret = iwl_mvm_mld_rm_sta_from_fw(mvm, sta_id);
---
> 	if (sta_id <= IWL_MVM_MAX_STA_ID) {
> 		int ret = iwl_mvm_mld_rm_sta_from_fw(mvm, sta_id);
> 	} else {
> 		// Handle invalid sta_id value
> 	}
