|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
@@ -377,6 +377,18 @@ typedef struct ipa_wdi_buffer_info __qdf_ipa_wdi_buffer_info_t;
|
|
|
*/
|
|
|
typedef struct ipa_gsi_ep_config __qdf_ipa_gsi_ep_config_t;
|
|
|
|
|
|
+#ifdef WDI3_STATS_UPDATE
|
|
|
+/**
|
|
|
+ * __qdf_ipa_wdi_tx_info_t - WLAN embedded TX information
|
|
|
+ */
|
|
|
+typedef struct ipa_wdi_tx_info __qdf_ipa_wdi_tx_info_t;
|
|
|
+
|
|
|
+#define QDF_IPA_WDI_TX_INFO_STA_TX_BYTES(stats_info) \
|
|
|
+ (((struct ipa_wdi_tx_info *)stats_info)->sta_tx)
|
|
|
+#define QDF_IPA_WDI_TX_INFO_SAP_TX_BYTES(stats_info) \
|
|
|
+ (((struct ipa_wdi_tx_info *)stats_info)->ap_tx)
|
|
|
+#endif
|
|
|
+
|
|
|
/**
|
|
|
* __qdf_ipa_dp_evt_type_t - type of event client callback is
|
|
|
* invoked for on data path
|