Browse Source

qcacld-3.0: Enable periodic time sync between host and fw

Enable periodic time sync between host and fw by setting
gRemoveTimeStampSyncCmd to 0.

Change-Id: I52168ad6d065262c433c801716eec0d7782bf6e8
CRs-Fixed: 2845017
sheenam monga 4 years ago
parent
commit
bf3630cf7e
1 changed files with 8 additions and 3 deletions
  1. 8 3
      components/mlme/dispatcher/inc/cfg_mlme_generic.h

+ 8 - 3
components/mlme/dispatcher/inc/cfg_mlme_generic.h

@@ -601,9 +601,14 @@ enum monitor_mode_concurrency {
  * gRemoveTimeStampSyncCmd - Enable/Disable to remove time stamp sync cmd
  * @Min: 0
  * @Max: 1
- * @Default: 1
+ * @Default: 0
+ *
+ * This ini is used to enable/disable the removal of time stamp sync cmd.
+ * If we disable this periodic time sync update to firmware then roaming
+ * timestamp updates to kmsg will have invalid timestamp as firmware will
+ * use this timestamp to capture when roaming has happened with respect
+ * to host timestamp.
  *
- * This ini is used to enable/disable the removal of time stamp sync cmd
  *
  * Usage: External
  *
@@ -611,7 +616,7 @@ enum monitor_mode_concurrency {
  */
 #define CFG_REMOVE_TIME_STAMP_SYNC_CMD CFG_INI_BOOL( \
 	"gRemoveTimeStampSyncCmd", \
-	1, \
+	0, \
 	"Enable to remove time stamp sync cmd")
 
 /*