aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-mac80211.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-mac80211.c b/drivers/net/wireless/iwlwifi/iwl-mac80211.c
index 073e827c462b..05b1f0d2f387 100644
--- a/drivers/net/wireless/iwlwifi/iwl-mac80211.c
+++ b/drivers/net/wireless/iwlwifi/iwl-mac80211.c
@@ -957,7 +957,8 @@ static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
957 957
958 priv->hw_roc_channel = channel; 958 priv->hw_roc_channel = channel;
959 priv->hw_roc_chantype = channel_type; 959 priv->hw_roc_chantype = channel_type;
960 priv->hw_roc_duration = duration; 960 /* convert from ms to TU */
961 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
961 priv->hw_roc_start_notified = false; 962 priv->hw_roc_start_notified = false;
962 cancel_delayed_work(&priv->hw_roc_disable_work); 963 cancel_delayed_work(&priv->hw_roc_disable_work);
963 964