Parcourir la source

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
Chaoli Zhou il y a 5 ans
Parent
commit
fd20986e6a
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      dp/wifi3.0/dp_rx_mon_dest.c

+ 3 - 0
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 */