qcacmn: Make DMA coherent mask macro independent of IPA offload

Macro DMA_COHERENT_MASK_IPA_VER_3_AND_ABOVE is used in non
IPA offload case also so bring this macro definition out of
IPA offload feature and change it to DMA_COHERENT_MASK_DEFAULT.

Change-Id: Ib03aa8ae2938e1de1a957660923a711d452a9337
CRs-Fixed: 2649909
This commit is contained in:
Karthik Kantamneni
2020-03-24 10:55:52 +05:30
committed by nshrivas
parent 1929eefb7f
commit 765d5e27ed
3 changed files with 7 additions and 5 deletions

View File

@@ -68,8 +68,9 @@ typedef void *hif_handle_t;
#define HIF_TYPE_QCA6750 23
#define HIF_TYPE_QCA5018 24
#define DMA_COHERENT_MASK_DEFAULT 37
#ifdef IPA_OFFLOAD
#define DMA_COHERENT_MASK_IPA_VER_3_AND_ABOVE 37
#define DMA_COHERENT_MASK_BELOW_IPA_VER_3 32
#endif