]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
iwlwifi: fix PAN parameters while scanning
authorJohannes Berg <johannes.berg@intel.com>
Mon, 30 Aug 2010 13:12:00 +0000 (06:12 -0700)
committerWey-Yi Guy <wey-yi.w.guy@intel.com>
Sat, 11 Sep 2010 15:51:10 +0000 (08:51 -0700)
When only the PAN side was active, we gave no
time to the WLAN context, which is OK unless
we are scanning, which always happens on the
WLAN context. Fix this.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c

index 6fb52abafc8d46e305328754564d25827cd8a16a..d03ba6a8e64a2d2bba3488cf0885711e49d4a131 100644 (file)
@@ -331,6 +331,11 @@ static int iwlagn_set_pan_params(struct iwl_priv *priv)
                slot1 = max_t(int, 1, ctx_pan->vif->bss_conf.dtim_period) *
                                        ctx_pan->vif->bss_conf.beacon_int;
                slot1 = max_t(int, 100, slot1);
+
+               if (test_bit(STATUS_SCAN_HW, &priv->status)) {
+                       slot0 = slot1 * 3 - 20;
+                       slot1 = 20;
+               }
        }
 
        cmd.slots[0].width = cpu_to_le16(slot0);