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

Commit 8b5bed90 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by John W. Linville
Browse files

iwlwifi: don't init trans->reg_lock from the op_mode



This doesn't make any sense. Init it from the transport instead.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
parent f6b11546
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1588,7 +1588,6 @@ static struct iwl_op_mode *iwl_op_mode_dvm_start(struct iwl_trans *trans,
	/* these spin locks will be used in apm_ops.init and EEPROM access
	 * we should init now
	 */
	spin_lock_init(&priv->trans->reg_lock);
	spin_lock_init(&priv->statistics.lock);

	/***********************
+1 −0
Original line number Diff line number Diff line
@@ -2175,6 +2175,7 @@ struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,

	/* Initialize the wait queue for commands */
	init_waitqueue_head(&trans->wait_command_queue);
	spin_lock_init(&trans->reg_lock);

	return trans;