summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjiad <jiad@codeaurora.org>2018-01-31 11:59:47 +0800
committersnandini <snandini@codeaurora.org>2018-01-31 21:13:27 -0800
commitb0ba452dc9b7bd26b5231f8b60c7fdfec8b1bda7 (patch)
tree04b0493419e2000b0282be0d6bd0c5d162dc3047
parent485e3971d46268cb036144792322c218aedae859 (diff)
qcacld-3.0: Fix unknown symbol hdd_gro_destroy
hdd_gro_destroy has definition only for HELIUMPLUS but not for other platforms. Fix is to add definition for non-HELIUMPLUS platforms. Change-Id: Iaab1e06527c1c224e93eb9c66f13d2fd426ba232 CRs-Fixed: 2181385
-rw-r--r--core/hdd/src/wlan_hdd_tx_rx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/hdd/src/wlan_hdd_tx_rx.c b/core/hdd/src/wlan_hdd_tx_rx.c
index d4094c3f1d93..3a11a4298669 100644
--- a/core/hdd/src/wlan_hdd_tx_rx.c
+++ b/core/hdd/src/wlan_hdd_tx_rx.c
@@ -1664,6 +1664,10 @@ void hdd_gro_destroy(void)
}
#else /* HELIUMPLUS */
static inline void hdd_register_rx_ol(void) { }
+
+void hdd_gro_destroy(void)
+{
+}
#endif
/**