|
@@ -576,7 +576,7 @@ static void iwl4965_rx_card_state_notif(struct iwl_priv *priv,
|
|
|
wiphy_rfkill_set_hw_state(priv->hw->wiphy,
|
|
|
test_bit(STATUS_RF_KILL_HW, &priv->status));
|
|
|
else
|
|
|
- wake_up_interruptible(&priv->wait_command_queue);
|
|
|
+ wake_up(&priv->wait_command_queue);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -926,7 +926,7 @@ static void iwl4965_irq_tasklet(struct iwl_priv *priv)
|
|
|
handled |= CSR_INT_BIT_FH_TX;
|
|
|
/* Wake up uCode load routine, now that load is complete */
|
|
|
priv->ucode_write_complete = 1;
|
|
|
- wake_up_interruptible(&priv->wait_command_queue);
|
|
|
+ wake_up(&priv->wait_command_queue);
|
|
|
}
|
|
|
|
|
|
if (inta & ~handled) {
|
|
@@ -1795,7 +1795,7 @@ static void iwl4965_alive_start(struct iwl_priv *priv)
|
|
|
iwl4965_rf_kill_ct_config(priv);
|
|
|
|
|
|
IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
|
|
|
- wake_up_interruptible(&priv->wait_command_queue);
|
|
|
+ wake_up(&priv->wait_command_queue);
|
|
|
|
|
|
iwl_legacy_power_update_mode(priv, true);
|
|
|
IWL_DEBUG_INFO(priv, "Updated power mode\n");
|
|
@@ -1828,7 +1828,7 @@ static void __iwl4965_down(struct iwl_priv *priv)
|
|
|
iwl_legacy_clear_driver_stations(priv);
|
|
|
|
|
|
/* Unblock any waiting calls */
|
|
|
- wake_up_interruptible_all(&priv->wait_command_queue);
|
|
|
+ wake_up_all(&priv->wait_command_queue);
|
|
|
|
|
|
/* Wipe out the EXIT_PENDING status bit if we are not actually
|
|
|
* exiting the module */
|
|
@@ -2266,7 +2266,7 @@ int iwl4965_mac_start(struct ieee80211_hw *hw)
|
|
|
|
|
|
/* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
|
|
|
* mac80211 will not be run successfully. */
|
|
|
- ret = wait_event_interruptible_timeout(priv->wait_command_queue,
|
|
|
+ ret = wait_event_timeout(priv->wait_command_queue,
|
|
|
test_bit(STATUS_READY, &priv->status),
|
|
|
UCODE_READY_TIMEOUT);
|
|
|
if (!ret) {
|