Browse Source

qcacld-3.0: Fix compilation issue about 64-bit division

This change fixed compilation issue about the 64-bit division in
sdxlemur - a 32-bit architecture, which is not defined
"__aeabi_uldivmod" for the 32-bit architecture.

Change-Id: Ief75e7903fe301f5641fa4f734dc8129a7501b7e
CRs-Fixed: 3067887
Wu Gao 3 years ago
parent
commit
7585fba94b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      components/cmn_services/logging/src/wlan_connectivity_logging.c

+ 4 - 1
components/cmn_services/logging/src/wlan_connectivity_logging.c

@@ -236,7 +236,10 @@ wlan_connectivity_log_dequeue(void)
 							current_timestamp;
 		}
 
-		global_cl.sent_msgs_count %= WLAN_RECORDS_PER_SEC;
+		global_cl.sent_msgs_count =
+				qdf_do_div_rem(global_cl.sent_msgs_count,
+					       WLAN_RECORDS_PER_SEC);
+
 		data[idx] = *global_cl.read_ptr;
 
 		/*