Forráskód Böngészése

qcacmn: Make dp_rx_mon_append_nbuf function public

Function dp_rx_mon_append_nbuf is now accessed outside
the file where it is declared hence make it public

Change-Id: I6b596815a385ba367f70b9e5ea07c94520cca253
CRs-Fixed: 3488043
Jeevan Kukkalli 2 éve
szülő
commit
958704d20e

+ 1 - 8
dp/wifi3.0/monitor/2.0/dp_rx_mon_2.0.c

@@ -1413,14 +1413,7 @@ dp_rx_mon_handle_flush_n_trucated_ppdu(struct dp_soc *soc,
 						  rx_mon_desc_pool);
 }
 
-/**
- * dp_rx_mon_append_nbuf() - Append nbuf to parent nbuf
- * @nbuf: Parent nbuf
- * @tmp_nbuf: nbuf to be attached to parent
- *
- * Return: void
- */
-static void dp_rx_mon_append_nbuf(qdf_nbuf_t nbuf, qdf_nbuf_t tmp_nbuf)
+void dp_rx_mon_append_nbuf(qdf_nbuf_t nbuf, qdf_nbuf_t tmp_nbuf)
 {
 	qdf_nbuf_t last_nbuf;
 

+ 8 - 0
dp/wifi3.0/monitor/2.0/dp_rx_mon_2.0.h

@@ -401,4 +401,12 @@ void dp_mon_rx_print_advanced_stats_2_0(struct dp_soc *soc,
 }
 #endif
 
+/**
+ * dp_rx_mon_append_nbuf() - Append nbuf to parent nbuf
+ * @nbuf: Parent nbuf
+ * @tmp_nbuf: nbuf to be attached to parent
+ *
+ * Return: void
+ */
+void dp_rx_mon_append_nbuf(qdf_nbuf_t nbuf, qdf_nbuf_t tmp_nbuf);
 #endif /* _DP_RX_MON_2_0_H_ */