Explorar o código

qcacmn: Remove adrastea compile flag from log to user api

Adrastea compile flag is not needed for wlan log to user
time stamp add API because current day of time is expected
to be logged in driver log for all cases.

Change-Id: If04dc54ef35db6d66da9a69a1c7d502873009553
CRs-Fixed: 2444852
Rajeev Kumar %!s(int64=6) %!d(string=hai) anos
pai
achega
f13e25e8fb
Modificáronse 1 ficheiros con 0 adicións e 15 borrados
  1. 0 15
      utils/logging/src/wlan_logging_sock_svc.c

+ 0 - 15
utils/logging/src/wlan_logging_sock_svc.c

@@ -254,7 +254,6 @@ static const char *current_process_name(void)
 	return current->comm;
 }
 
-#ifdef QCA_WIFI_3_0_ADRASTEA
 /**
  * wlan_add_user_log_time_stamp() - populate firmware and kernel timestamps
  * @tbuf: Pointer to time stamp buffer
@@ -283,20 +282,6 @@ static int wlan_add_user_log_time_stamp(char *tbuf, size_t tbuf_sz, uint64_t ts)
 	return scnprintf(tbuf, tbuf_sz, "[%.16s][0x%llx]%s",
 			 current_process_name(), ts, time_buf);
 }
-#else
-static int wlan_add_user_log_time_stamp(char *tbuf, size_t tbuf_sz, uint64_t ts)
-{
-	uint32_t rem;
-	char time_buf[20];
-
-	qdf_get_time_of_the_day_in_hr_min_sec_usec(time_buf, sizeof(time_buf));
-
-	rem = do_div(ts, QDF_MC_TIMER_TO_SEC_UNIT);
-	return scnprintf(tbuf, tbuf_sz, "[%.16s][%lu.%06lu]%s",
-			 current_process_name(), (unsigned long)ts,
-			 (unsigned long)rem, time_buf);
-}
-#endif /* QCA_WIFI_3_0_ADRASTEA */
 
 #ifdef WLAN_MAX_LOGS_PER_SEC
 static qdf_time_t __log_window_end_ticks;