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:
@@ -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
|
||||
|
Reference in New Issue
Block a user