OSDN Git Service

wifi: iwlwifi: mvm: remove not needed initializations
authorMiri Korenblit <miriam.rachel.korenblit@intel.com>
Mon, 20 Mar 2023 10:33:15 +0000 (12:33 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 22 Mar 2023 12:16:36 +0000 (13:16 +0100)
commit6a8dee1391ff1d4942e8f09b5fb8c1087cd6a6c7
tree09dbb6d64fa26ab39b6020963054a7e9257c2d43
parent77b6a2e5f49bb3a4756a4b82f24221e62fa6ea8c
wifi: iwlwifi: mvm: remove not needed initializations

In iwl_mvm_add_sta() we're initializing the new allocated mvm_sta.
We are setting some fields to zero even though it was allocated with
kzalloc, for the case of HW restart. But in such a case we will never
get to this initializations due to the goto statement that we have in
this case. Remove these initializations.

Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230320122330.c0b4d1e986a5.I6959bf1aca74c865e3c1edbf711f5fe8fb8c0c9f@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/sta.c