qcacmn: Make dp_print_mlo_ast_stats() static

The function dp_print_mlo_ast_stats() is currently a public function.
However this function is only called from within the file where it is
defined, so make it static.

Change-Id: Id83c7b3110c60ca6e3dc3263aaf87d21e9365a31
CRs-Fixed: 3374039
This commit is contained in:
Jeff Johnson
2023-01-05 12:50:51 -08:00
committed by Madan Koyyalamudi
parent fc960c0f9f
commit 39b8d28508

View File

@@ -268,10 +268,6 @@ static QDF_STATUS dp_alloc_tx_ring_pair_by_index(struct dp_soc *soc,
static uint8_t dp_soc_ring_if_nss_offloaded(struct dp_soc *soc, static uint8_t dp_soc_ring_if_nss_offloaded(struct dp_soc *soc,
enum hal_ring_type ring_type, enum hal_ring_type ring_type,
int ring_num); int ring_num);
#ifdef FEATURE_AST
void dp_print_mlo_ast_stats(struct dp_soc *soc);
#endif
#ifdef DP_UMAC_HW_RESET_SUPPORT #ifdef DP_UMAC_HW_RESET_SUPPORT
static QDF_STATUS dp_umac_reset_handle_pre_reset(struct dp_soc *soc); static QDF_STATUS dp_umac_reset_handle_pre_reset(struct dp_soc *soc);
static QDF_STATUS dp_umac_reset_handle_post_reset(struct dp_soc *soc); static QDF_STATUS dp_umac_reset_handle_post_reset(struct dp_soc *soc);
@@ -1738,7 +1734,7 @@ configure_msi2:
* *
* Return: void * Return: void
*/ */
void dp_print_mlo_ast_stats(struct dp_soc *soc) static void dp_print_mlo_ast_stats(struct dp_soc *soc)
{ {
if (soc->arch_ops.print_mlo_ast_stats) if (soc->arch_ops.print_mlo_ast_stats)
soc->arch_ops.print_mlo_ast_stats(soc); soc->arch_ops.print_mlo_ast_stats(soc);