|
@@ -64,7 +64,8 @@ cdp_tx_me_free_descriptor(ol_txrx_soc_handle soc, uint8_t pdev_id)
|
|
|
static inline uint16_t
|
|
|
cdp_tx_me_convert_ucast(ol_txrx_soc_handle soc, uint8_t vdev_id,
|
|
|
qdf_nbuf_t wbuf, u_int8_t newmac[][6],
|
|
|
- uint8_t newmaccnt, uint8_t tid, bool is_igmp)
|
|
|
+ uint8_t newmaccnt, uint8_t tid, bool is_igmp,
|
|
|
+ bool is_dms_pkt)
|
|
|
{
|
|
|
if (!soc || !soc->ops) {
|
|
|
dp_cdp_debug("Invalid Instance");
|
|
@@ -77,7 +78,8 @@ cdp_tx_me_convert_ucast(ol_txrx_soc_handle soc, uint8_t vdev_id,
|
|
|
return 0;
|
|
|
|
|
|
return soc->ops->me_ops->tx_me_convert_ucast
|
|
|
- (soc, vdev_id, wbuf, newmac, newmaccnt, tid, is_igmp);
|
|
|
+ (soc, vdev_id, wbuf, newmac, newmaccnt, tid, is_igmp,
|
|
|
+ is_dms_pkt);
|
|
|
}
|
|
|
|
|
|
#endif
|