|
@@ -43,10 +43,27 @@ int wlan_logging_sock_deinit_svc(void);
|
|
|
int wlan_logging_sock_activate_svc(int log_fe_to_console, int num_buf);
|
|
|
int wlan_logging_sock_deactivate_svc(void);
|
|
|
int wlan_log_to_user(QDF_TRACE_LEVEL log_level, char *to_be_sent, int length);
|
|
|
+
|
|
|
+#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
|
|
|
void wlan_logging_set_per_pkt_stats(void);
|
|
|
void wlan_logging_set_log_level(void);
|
|
|
void wlan_logging_set_fw_flush_complete(void);
|
|
|
void wlan_flush_host_logs_for_fatal(void);
|
|
|
+#else
|
|
|
+static inline void wlan_flush_host_logs_for_fatal(void)
|
|
|
+{
|
|
|
+}
|
|
|
+static inline void wlan_logging_set_log_level(void)
|
|
|
+{
|
|
|
+}
|
|
|
+static inline void wlan_logging_set_per_pkt_stats(void)
|
|
|
+{
|
|
|
+}
|
|
|
+static inline void wlan_logging_set_fw_flush_complete(void)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif /* WLAN_LOGGING_SOCK_SVC_ENABLE */
|
|
|
+
|
|
|
#ifdef FEATURE_WLAN_DIAG_SUPPORT
|
|
|
void wlan_report_log_completion(uint32_t is_fatal,
|
|
|
uint32_t indicator,
|
|
@@ -58,9 +75,6 @@ static inline void wlan_report_log_completion(uint32_t is_fatal,
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
-static inline void wlan_flush_host_logs_for_fatal(void)
|
|
|
-{
|
|
|
-}
|
|
|
|
|
|
#endif /* FEATURE_WLAN_DIAG_SUPPORT */
|
|
|
#endif /* WLAN_LOGGING_SOCK_SVC_H */
|