diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-08-04 17:18:47 -0700 |
|---|---|---|
| committer | Vishwajith Upendra <vishwaji@codeaurora.org> | 2016-08-13 14:07:29 -0700 |
| commit | da5ee77d302d3a818a3e03fabacaf97ec0b65349 (patch) | |
| tree | 6a9d61f2399f1291398015537b1edb2d71a165e3 | |
| parent | ca1b32b749ef0296ed9479bcb0b069771bd284e5 (diff) | |
qcacld-3.0: Change max value of burst_dur ioctl
Currently the burst_dur private ioctl enforces a maximum limit of
8192. Per firmware team define the max as 102400 (for 100 ms or a
normal beacon interval).
Change-Id: I3f01b06ad047f7b972e649c798e4a507fcc55755
CRs-Fixed: 1050791
| -rw-r--r-- | core/hdd/src/wlan_hdd_wext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/src/wlan_hdd_wext.c b/core/hdd/src/wlan_hdd_wext.c index 315ee630f119..f6979d1ef69a 100644 --- a/core/hdd/src/wlan_hdd_wext.c +++ b/core/hdd/src/wlan_hdd_wext.c @@ -5642,7 +5642,7 @@ static int __iw_setint_getnone(struct net_device *dev, case WE_SET_BURST_DUR: { hdd_notice("SET Burst duration val %d", set_value); - if ((set_value > 0) && (set_value <= 8192)) + if ((set_value > 0) && (set_value <= 102400)) ret = wma_cli_set_command(pAdapter->sessionId, WMI_PDEV_PARAM_BURST_DUR, set_value, PDEV_CMD); |
