Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7db5b989 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville
Browse files

iwlwifi: move uCode deallocation to drv



This shouldn't be in the op_mode, as it
will later be switchable at runtime.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ab0bd5b3
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1385,8 +1385,6 @@ static void iwl_op_mode_dvm_stop(struct iwl_op_mode *op_mode)
	/*This will stop the queues, move the device to low power state */
	iwl_trans_stop_device(trans(priv));

	iwl_dealloc_ucode(nic(priv));

	iwl_eeprom_free(priv->shrd);

	/*netif_stop_queue(dev); */
+2 −0
Original line number Diff line number Diff line
@@ -99,5 +99,7 @@ void iwl_drv_stop(struct iwl_shared *shrd)
	if (shrd->nic->op_mode)
		iwl_op_mode_stop(shrd->nic->op_mode);

	iwl_dealloc_ucode(shrd->nic);

	kfree(shrd->nic);
}