qcacmn: Include device sleep time in the NOL timeout value

'jiffies' does not include the device sleep time.
Use qdf_get_monotonic_boottime to monitor lapse of time for nol.

Change-Id: I6e00e003b8ee3d456ac4ec62b23fdaa02d577672
CRs-Fixed: 2652692
此提交包含在:
bings
2020-03-31 19:40:12 +08:00
提交者 nshrivas
父節點 b133d310ec
當前提交 868ce7c912
共有 3 個檔案被更改,包括 20 行新增21 行删除

查看文件

@@ -84,14 +84,14 @@
* struct dfsreq_nolelem - NOL elements.
* @nol_freq: NOL channel frequency.
* @nol_chwidth: NOL channel width.
* @nol_start_ticks: OS ticks when the NOL timer started.
* @nol_start_us: OS microseconds when the NOL timer started.
* @nol_timeout_ms: Nol timeout value in msec.
*/
struct dfsreq_nolelem {
uint16_t nol_freq;
uint16_t nol_chwidth;
unsigned long nol_start_ticks;
uint64_t nol_start_us;
uint32_t nol_timeout_ms;
};