Commit abc471dc authored by Stanislaw Gruszka's avatar Stanislaw Gruszka Committed by John W. Linville
Browse files

iwl3945: prevent too frequent firmware resets



Similarly like on iwlagn, initialize reset duration on iwl3945 to prevent
too frequent firmware resets.

Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Acked-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 29cbe68c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -3861,6 +3861,13 @@ static int iwl3945_init_drv(struct iwl_priv *priv)
	priv->iw_mode = NL80211_IFTYPE_STATION;
	priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;

	/* initialize force reset */
	priv->force_reset[IWL_RF_RESET].reset_duration =
		IWL_DELAY_NEXT_FORCE_RF_RESET;
	priv->force_reset[IWL_FW_RESET].reset_duration =
		IWL_DELAY_NEXT_FORCE_FW_RELOAD;


	priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
	priv->tx_power_next = IWL_DEFAULT_TX_POWER;