qcacld-3.0: CL 1476830 - update fw common interface files

qcacld-2.0 to qcacld-3.0 propagation.

Add 11ax/HE fragmentation support flags and add flags to allow
automatic and forced enabling of pktlog.

Change-Id: Ic4bbaf71279ee6fef190530dd70a798be7267797
CRs-Fixed: 865207
This commit is contained in:
Krishna Kumaar Natarajan
2016-03-25 14:30:11 -07:00
committed by Gerrit - the friendly Code Review server
parent ea0a796e9e
commit 489bf8df6c
3 changed files with 40 additions and 3 deletions

View File

@@ -152,6 +152,16 @@ typedef enum {
((mode) == MODE_11AC_VHT80))
#endif
#define IS_MODE_HE(mode) (((mode) == MODE_11AX_HE20) || \
((mode) == MODE_11AX_HE40) || \
((mode) == MODE_11AX_HE80) || \
((mode) == MODE_11AX_HE80_80) || \
((mode) == MODE_11AX_HE160) || \
((mode) == MODE_11AX_HE20_2G) || \
((mode) == MODE_11AX_HE40_2G) || \
((mode) == MODE_11AX_HE80_2G))
#define IS_MODE_VHT_2G(mode) (((mode) == MODE_11AC_VHT20_2G) || \
((mode) == MODE_11AC_VHT40_2G) || \
((mode) == MODE_11AC_VHT80_2G))