qcacmn: Initial crypto service component addition

Initial crypto service component addition in object
manager and qdf error for crypto

Change-Id: I423b41cfe3cf429c29859867aaa8467b3e35cddc
This commit is contained in:
Ashok Ponnaiah
2017-03-21 14:54:16 +05:30
committed by Sandeep Puligilla
parent af42303440
commit d973716683
3 changed files with 14 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
* Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -82,6 +82,10 @@
* @QDF_STATUS_MAXCOMP_FAIL: Component id is more than MAX UMAC components
* @QDF_STATUS_COMP_DISABLED: UMAC Component is disabled
* @QDF_STATUS_COMP_ASYNC: UMAC component runs in asynchronous communication
* @QDF_STATUS_CRYPTO_PN_ERROR: PN ERROR in received frame
* @QDF_STATUS_CRYPTO_MIC_FAILURE: MIC failure in received frame
* @QDF_STATUS_CRYPTO_ENCRYPT_FAILED: encryption failed
* @QDF_STATUS_CRYPTO_DECRYPT_FAILED: decryption failed
* @QDF_STATUS_MAX: not a realy value just a place holder for max
*/
typedef enum {
@@ -131,6 +135,10 @@ typedef enum {
QDF_STATUS_MAXCOMP_FAIL,
QDF_STATUS_COMP_DISABLED,
QDF_STATUS_COMP_ASYNC,
QDF_STATUS_CRYPTO_PN_ERROR,
QDF_STATUS_CRYPTO_MIC_FAILURE,
QDF_STATUS_CRYPTO_ENCRYPT_FAILED,
QDF_STATUS_CRYPTO_DECRYPT_FAILED,
QDF_STATUS_MAX
} QDF_STATUS;