qcacmn: Fill metadata for sawf feature

Fill metadata for transmission in lithium and berrylium
when sawf is enabled.

Change-Id: Icc76ca7b8310c21a98e7f01984d4901afba0526c
CRs-Fixed: 3138558
This commit is contained in:
Varsha Mishra
2022-03-01 16:30:11 +05:30
committed by Madan Koyyalamudi
parent 51637c64bb
commit 0d2ec58510
5 changed files with 125 additions and 0 deletions

View File

@@ -28,6 +28,9 @@
#include "dp_internal.h"
#include "hal_tx.h"
#include <qdf_tracepoint.h>
#ifdef CONFIG_SAWF
#include "dp_sawf.h"
#endif
#define DP_INVALID_VDEV_ID 0xFF
@@ -981,4 +984,11 @@ void dp_tx_desc_check_corruption(struct dp_tx_desc_s *tx_desc)
}
#endif
#ifndef CONFIG_SAWF
static inline bool dp_sawf_tag_valid_get(qdf_nbuf_t nbuf)
{
return false;
}
#endif
#endif