qcacmn: Add wmi command to set limit off chan parameters

Add WMI command for setting limit off channel command
parameters to firmware.

CRs-Fixed: 2068307
Change-Id: Ia99f1b4d4fe33082a561c9307af9d76ae16d8be4
This commit is contained in:
Ganesh Kondabattini
2017-07-10 11:54:11 +05:30
committed by snandini
父節點 5fa0255eed
當前提交 20b086b6cd
共有 3 個文件被更改,包括 21 次插入0 次删除

查看文件

@@ -7382,4 +7382,20 @@ struct wmi_dbs_scan_sel_params {
uint32_t num_non_dbs_scans[WMI_SCAN_CLIENT_MAX];
};
/**
* struct wmi_limit_off_chan_param - limit off channel parameters
* @vdev_id: vdev id
* @status: status of the command (enable/disable)
* @max_offchan_time: max off channel time
* @rest_time: home channel time
* @skip_dfs_chans: skip dfs channels during scan
*/
struct wmi_limit_off_chan_param {
uint32_t vdev_id;
bool status;
uint32_t max_offchan_time;
uint32_t rest_time;
bool skip_dfs_chans;
};
#endif /* _WMI_UNIFIED_PARAM_H_ */