qcacld-3.0: set the limit off-channel command parameters

Set the limit off-channel command parameters and conc_system_pref
according to active tos indication from application.

CRs-Fixed: 2066088
Change-Id: I896999adb59aa468daf33364c708d95ef3062018
This commit is contained in:
Ganesh Kondabattini
2017-06-21 16:26:39 +05:30
zatwierdzone przez snandini
rodzic dadf1fb155
commit 3573957abf
6 zmienionych plików z 199 dodań i 0 usunięć

Wyświetl plik

@@ -7664,4 +7664,19 @@ struct get_chain_rssi_req_params {
uint8_t session_id;
};
/*
* struct sir_limit_off_chan - limit off-channel command parameters
* @vdev_id: vdev id
* @is_tos_active: status of the traffic (active/inactive)
* @max_off_chan_time: max allowed off channel time
* @rest_time: home channel time
* @skip_dfs_chans: skip dfs channels during scan
*/
struct sir_limit_off_chan {
uint8_t vdev_id;
bool is_tos_active;
uint32_t max_off_chan_time;
uint32_t rest_time;
bool skip_dfs_chans;
};
#endif /* __SIR_API_H */