|
@@ -160,7 +160,7 @@ static void iwl_do_scan_abort(struct iwl_priv *priv)
|
|
|
int iwl_scan_cancel(struct iwl_priv *priv)
|
|
|
{
|
|
|
IWL_DEBUG_SCAN(priv, "Queuing abort scan\n");
|
|
|
- queue_work(priv->workqueue, &priv->abort_scan);
|
|
|
+ queue_work(priv->shrd->workqueue, &priv->abort_scan);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -263,7 +263,7 @@ static void iwl_rx_scan_complete_notif(struct iwl_priv *priv,
|
|
|
(priv->scan_band == IEEE80211_BAND_2GHZ) ? "2.4" : "5.2",
|
|
|
jiffies_to_msecs(jiffies - priv->scan_start));
|
|
|
|
|
|
- queue_work(priv->workqueue, &priv->scan_completed);
|
|
|
+ queue_work(priv->shrd->workqueue, &priv->scan_completed);
|
|
|
|
|
|
if (priv->iw_mode != NL80211_IFTYPE_ADHOC &&
|
|
|
iwl_advanced_bt_coexist(priv) &&
|
|
@@ -283,7 +283,8 @@ static void iwl_rx_scan_complete_notif(struct iwl_priv *priv,
|
|
|
IWL_BT_COEX_TRAFFIC_LOAD_NONE;
|
|
|
}
|
|
|
priv->bt_status = scan_notif->bt_status;
|
|
|
- queue_work(priv->workqueue, &priv->bt_traffic_change_work);
|
|
|
+ queue_work(priv->shrd->workqueue,
|
|
|
+ &priv->bt_traffic_change_work);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -394,7 +395,7 @@ int __must_check iwl_scan_initiate(struct iwl_priv *priv,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
- queue_delayed_work(priv->workqueue, &priv->scan_check,
|
|
|
+ queue_delayed_work(priv->shrd->workqueue, &priv->scan_check,
|
|
|
IWL_SCAN_CHECK_WATCHDOG);
|
|
|
|
|
|
return 0;
|
|
@@ -450,7 +451,7 @@ out_unlock:
|
|
|
*/
|
|
|
void iwl_internal_short_hw_scan(struct iwl_priv *priv)
|
|
|
{
|
|
|
- queue_work(priv->workqueue, &priv->start_internal_scan);
|
|
|
+ queue_work(priv->shrd->workqueue, &priv->start_internal_scan);
|
|
|
}
|
|
|
|
|
|
static void iwl_bg_start_internal_scan(struct work_struct *work)
|