On 10/19/2011 03:20 AM, Rishi Panjwani wrote: > In order to allow user space based control of background scan interval, > we use available debugfs infrastructure. The feature has been added for > testing purposes. The user has to write the bgscan interval (in secs) to > the bgscan_interval file in ath6kl debug directory. To disable bgscan, > a '0' is to be written to the bgscan_interval file. > > Example: > > echo "2" > bgscan_interval > > This will make the background scan interval as 2 seconds Thanks, applied. But I did one change: > + if (bgscan_int) > + ath6kl_wmi_scanparams_cmd(ar->wmi, 0, 0, bgscan_int, 0, 0, 0, 3, > + 0, 0, 0); > + else > + ath6kl_wmi_scanparams_cmd(ar->wmi, 0, 0, 0xffff, 0, 0, 0, 3, 0, > + 0, 0); I changed that to more simple form: if (bgscan_int == 0) bgscan_int = 0xffff; ath6kl_wmi_scanparams_cmd(ar->wmi, 0, 0, bgscan_int, 0, 0, 0, 3, 0, 0, 0); Please check that I didn't break anything. Kalle -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html