Browse Source

qcacld-3.0: Don't use TWT_EN_DIS_FLAGS_SET_BTWT macro in wma layer

Restrict the usage of ‘TWT_EN_DIS_FLAGS_SET_BTWT' FW macro only
to the WMI layer.

Change-Id: Ib94735f3b71d0c3d88dc3c17fbd91a541a1d1672
CRs-Fixed: 2796482
sheenam monga 4 years ago
parent
commit
57d69a2c38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/wma/src/wma_twt.c

+ 1 - 1
core/wma/src/wma_twt.c

@@ -39,7 +39,7 @@ void wma_send_twt_enable_cmd(uint32_t pdev_id,
 	}
 	twt_enable_params.pdev_id = pdev_id;
 	twt_enable_params.sta_cong_timer_ms = congestion_timeout;
-	TWT_EN_DIS_FLAGS_SET_BTWT(twt_enable_params.flags, bcast_val);
+	twt_enable_params.b_twt_enable = bcast_val;
 	ret = wmi_unified_twt_enable_cmd(wma->wmi_handle, &twt_enable_params);
 
 	if (ret)