qcacmn: Use crypto APIs in scan filter

Use crypto APIs in scan filter to match the security.

Change-Id: I8b4d6f6085e3bfcdd8af2b4d9243c27e070cda78
CRs-Fixed: 2718079
This commit is contained in:
Abhishek Singh
2020-06-17 18:16:22 +05:30
committed by nshrivas
parent 168fbbffe7
commit 9cf786a2ab
5 changed files with 638 additions and 57 deletions

View File

@@ -92,6 +92,10 @@ typedef __qdf_wait_queue_head_t qdf_wait_queue_head_t;
*/
#define qdf_target_assert_always(expr) __qdf_target_assert(expr)
#define QDF_SET_PARAM(__param, __val) ((__param) |= (1 << (__val)))
#define QDF_HAS_PARAM(__param, __val) ((__param) & (1 << (__val)))
#define QDF_CLEAR_PARAM(__param, __val) ((__param) &= ((~1) << (__val)))
/**
* QDF_MAX - get maximum of two values
* @_x: 1st argument