From fd20986e6ab90b220239ca18392608f32bd5d810 Mon Sep 17 00:00:00 2001 From: Chaoli Zhou Date: Mon, 26 Aug 2019 10:44:53 +0800 Subject: [PATCH] qcacmn: Fix runtime unknown symbol issue In the sdx platform, WLAN monitor mode is disabed, in other words, CONFIG_FEATURE_MONITOR_MODE_SUPPORT will be set to n, but dp_mon_buf_delayed_replenish hasn't be defineded if it set to n, which can cause the runtime unknown symbol issue. So add the definition for it. Change-Id: Iec50f7cc5ed6f94e2f5a40fbc6594c2830d1359f --- dp/wifi3.0/dp_rx_mon_dest.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dp/wifi3.0/dp_rx_mon_dest.c b/dp/wifi3.0/dp_rx_mon_dest.c index 7970bbe7ce..409e1f6b62 100644 --- a/dp/wifi3.0/dp_rx_mon_dest.c +++ b/dp/wifi3.0/dp_rx_mon_dest.c @@ -1738,4 +1738,7 @@ QDF_STATUS dp_mon_link_free(struct dp_pdev *pdev) { return QDF_STATUS_SUCCESS; } + +void dp_mon_buf_delayed_replenish(struct dp_pdev *pdev) +{} #endif /* DISABLE_MON_CONFIG */