qcacld-3.0: Add USB bus support (CDS, Utils, SAP)

Add Module specific changes for USB bus support for qcacld3.0.

Change-Id: Idb9fe1232d451e4f88a001fbd6591ba13b0c859a
CRs-Fixed: 1023663
This commit is contained in:
Mohit Khanna
2016-05-17 14:46:06 -07:00
committed by Vishwajith Upendra
parent 841044f9c0
commit 43f433d719
3 changed files with 23 additions and 3 deletions

View File

@@ -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 */