WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
common_error_code_rom.h
浏览该文件的文档.
1/*
2 * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2020-2022. All rights reserved.
3 * Description: error type head file.
4 */
5
6#ifndef __COMMON_ERROR_CODE_ROM_H__
7#define __COMMON_ERROR_CODE_ROM_H__
8
9#include "osal_types.h"
10
11#ifdef __cplusplus
12#if __cplusplus
13 extern "C" {
14#endif
15#endif
16
17typedef enum {
18 OAL_SUCC = 0, /* 成功,没有异常 */
20
21 /**************************************************************************
22 plat pm exception
23 **************************************************************************/
27 OAL_ERR_CODE_FOBID_CLOSE_DEVICE = (OAL_ERR_CODE_PM_BASE + 2), /* APUT不允许关闭device */
28 OAL_ERR_CODE_CANNOT_CLOSE_WCPU = (OAL_ERR_CODE_PM_BASE + 3), /* 不允许关闭WCPU device */
29
30 /**************************************************************************
31 system exception
32 **************************************************************************/
33 OAL_ERR_CODE_SYS_BASE = 100, /* 基础值为100 */
34 OAL_ERR_CODE_PTR_NULL = OAL_ERR_CODE_SYS_BASE, /* 指针检查为空 */
35 OAL_ERR_CODE_ARRAY_OVERFLOW = (OAL_ERR_CODE_SYS_BASE + 1), /* 数组下标越界 */
37 OAL_ERR_CODE_ALLOC_MEM_FAIL = (OAL_ERR_CODE_SYS_BASE + 3), /* 申请内存失败 */
39 OAL_ERR_CODE_START_TIMRE_FAIL = (OAL_ERR_CODE_SYS_BASE + 5), /* 启动定时器失败 */
41 OAL_ERR_CODE_MAC_DEVICE_NULL = (OAL_ERR_CODE_SYS_BASE + 7), /* dmac_device_struz找不到 */
42 OAL_ERR_CODE_MAGIC_NUM_FAIL = (OAL_ERR_CODE_SYS_BASE + 8), /* 魔法数字检测失败 */
44 OAL_ERR_CODE_CFG_REG_TIMEOUT = (OAL_ERR_CODE_SYS_BASE + 10), /* 配置寄存器超时 */
45 OAL_ERR_CODE_CFG_REG_ERROR = (OAL_ERR_CODE_SYS_BASE + 11), /* 配置寄存器错误 */
46 OAL_ERR_CODE_LIST_NOT_EMPTY_ERROR = (OAL_ERR_CODE_SYS_BASE + 12), /* 链表不为空,一般出现于链表清除动作后 */
48 OAL_ERR_SYS_BUTT = (OAL_ERR_CODE_SYS_BASE + 99), /* system error最大值与BASE偏移为99 */
49
50 /**************************************************************************
51 config exception
52 ***************************************************************************/
53 OAL_ERR_CODE_CONFIG_BASE = 200, /* 基础值为200 */
59 OAL_ERR_CODE_VAP_INDX_UNSYNC = (OAL_ERR_CODE_CONFIG_BASE + 5), /* HMAC和DMAC创建vap时的index不一致 */
60 OAL_ERR_CODE_USER_INDX_UNSYNC = (OAL_ERR_CODE_CONFIG_BASE + 6), /* HMAC和DMAC创建user时的index不一致 */
61 OAL_ERR_CODE_USER_RES_CNT_ZERO = (OAL_ERR_CODE_CONFIG_BASE + 7), /* 用户资源已经释放,重复释放 */
62 OAL_ERR_CODE_CONFIG_BW_EXCEED = (OAL_ERR_CODE_CONFIG_BASE + 8), /* 带宽配置超过规格 */
63 OAL_ERR_CODE_ADD_VAP_INDX_UNSYNC = (OAL_ERR_CODE_CONFIG_BASE + 5), /* HMAC和DMAC创建vap时的index不一致 */
64 OAL_ERR_CODE_ADD_MULTI_USER_INDX_UNSYNC = (OAL_ERR_CODE_CONFIG_BASE + 6), /* HMAC和DMAC创建multi user时的index不一致 */
65
66 OAL_ERR_CODE_CONFIG_BUTT = (OAL_ERR_CODE_CONFIG_BASE + 99), /* 配置错误最大值与BASE偏移最大为99 */
67 /**************************************************************************
68 MSG exception
69 **************************************************************************/
70 OAL_ERR_CODE_MSG_BASE = 300, /* 基础值为300 */
72 OAL_ERR_CODE_MSG_TYPE_ERR = (OAL_ERR_CODE_MSG_BASE + 0), /* 消息类型解析错误 */
73 OAL_ERR_CODE_MSG_NOT_CMPTBL_WITH_STATE = (OAL_ERR_CODE_MSG_BASE + 1), /* 消息与所处的状态不一致 */
74 OAL_ERR_CODE_MSG_IE_MISS = (OAL_ERR_CODE_MSG_BASE + 2), /* 消息IE缺失 */
75 OAL_ERR_CODE_MSG_IE_VALUE_ERR = (OAL_ERR_CODE_MSG_BASE + 3), /* 消息IE的值错误 */
76 OAL_ERR_CODE_IPC_QUEUE_FULL = (OAL_ERR_CODE_MSG_BASE + 4), /* ipc内部消息发送队列列已满 */
77 OAL_ERR_CODE_MSG_NOT_FIND_STA_TAB = (OAL_ERR_CODE_MSG_BASE + 5), /* 消息找不到状态表 */
78 OAL_ERR_CODE_MSG_NOT_FIND_ACT_TAB = (OAL_ERR_CODE_MSG_BASE + 6), /* 消息找不到动作表 */
79 OAL_ERR_CODE_MSG_ACT_FUN_NULL = (OAL_ERR_CODE_MSG_BASE + 7), /* 消息对应的处理函数为NULL */
80
81 OAL_ERR_CODE_MSG_BUTT = (OAL_ERR_CODE_MSG_BASE + 99), /* 消息错误最大值与BASE偏移最大为99 */
82 /**************************************************************************
83 MAIN INIT exception
84 **************************************************************************/
85 OAL_ERR_MAIN_INIT_BASE = 400, /* 基础值为400 */
86 OAL_ERR_MAIN_INIT_MEM = OAL_ERR_MAIN_INIT_BASE, /* OAL MEM初始化失败 */
87 OAL_ERR_MAIN_INIT_FRW = (OAL_ERR_MAIN_INIT_BASE + 1), /* FRW 初始化失败 */
88 OAL_ERR_MAIN_INIT_ALG = (OAL_ERR_MAIN_INIT_BASE + 10), /* ALG 初始化失败 */
89 OAL_ERR_MAIN_INIT_DMAC = (OAL_ERR_MAIN_INIT_BASE + 20), /* DMAC 初始化失败 */
90 OAL_ERR_DMAC_INIT_STATE = (OAL_ERR_MAIN_INIT_BASE + 21), /* DMAC 初始化是状态异常 */
91 OAL_ERR_DMAC_INIT_CB = (OAL_ERR_MAIN_INIT_BASE + 22), /* DMAC rom cb初始化失败 */
92 OAL_ERR_DMAC_INIT_ADAPT = (OAL_ERR_MAIN_INIT_BASE + 23), /* DMAC hcc adapt初始化失败 */
93 OAL_ERR_DMAC_INIT_MAC_RES = (OAL_ERR_MAIN_INIT_BASE + 24), /* DMAC mac res初始化失败 */
94 OAL_ERR_DMAC_INIT_BOARD = (OAL_ERR_MAIN_INIT_BASE + 25), /* DMAC baord初始化失败 */
95 OAL_ERR_MAIN_INIT_HAL = (OAL_ERR_MAIN_INIT_BASE + 30), /* HAL 初始化失败 */
96 OAL_ERR_INIT_HAL_STATE = (OAL_ERR_MAIN_INIT_BASE + 31), /* HAL 初始化时状态异常 */
97 OAL_ERR_INIT_HAL_CHIP = (OAL_ERR_MAIN_INIT_BASE + 32), /* HAL CHIP初始化失败 */
98 OAL_ERR_INIT_HAL_CB = (OAL_ERR_MAIN_INIT_BASE + 33), /* HAL rom cb初始化失败 */
99 OAL_ERR_MAIN_INIT_MOD = (OAL_ERR_MAIN_INIT_BASE + 40), /* HAL 初始化失败 */
100 OAL_ERR_MAIN_INIT_BUTT = (OAL_ERR_MAIN_INIT_BASE + 99), /* 消息错误最大值与BASE偏移最大为99 */
101
102 /**************************************************************************
103 文件操作错误码
104 **************************************************************************/
110
111 OAL_ERR_CODE_FILE_BUTT = (OAL_ERR_CODE_FILE_BASE + 99), /* 文件操作错误最大值 */
112
113 /**************************************************************************
114 HCC错误码
115 **************************************************************************/
118 OAL_ERR_CODE_HCC_BUTT = (OAL_ERR_CODE_HCC_BASE + 99), /* 文件操作错误最大值 */
119
120 /**************************************************************************
121 String operation exception
122 **************************************************************************/
124 OAL_ERR_CODE_STR_NULL = (OAL_ERR_CODE_STR_BASE + 0), /* 字符串不含有任何字符 */
125
126 /**************************************************************************
127 各特性自定义错误,从10000开始,每个特性分配100个
128 **************************************************************************/
129 /**************************** 描述符操作错误 *****************************/
130 OAL_ERR_CODE_DSCR_BASE = 10000, /* 基础值为10000 */
131 OAL_ERR_CODE_RX_AMSDU_DISORDER = OAL_ERR_CODE_DSCR_BASE, /* AMSDU对应的描述符乱序 */
132 OAL_ERR_CODE_RX_DSCR_LOSE = (OAL_ERR_CODE_DSCR_BASE + 1), /* 描述符域buf数目不对应 */
134 OAL_ERR_CODE_RX_DSCR_AMSDU_DISORDER = (OAL_ERR_CODE_DSCR_BASE + 0), /* AMSDU对应的描述符乱序 */
135
136 OAL_ERR_CODE_DSCR_BUTT = (OAL_ERR_CODE_DSCR_BASE + 99), /* 该错误与BASE偏移最大为99 */
137
138 /**************************** 11i 特性 ***********************************/
139 OAL_ERR_CODE_SECR_BASE = 10100, /* 基础值为10100 */
144
145 OAL_ERR_CODE_SEC_BUTT = (OAL_ERR_CODE_SECR_BASE + 99), /* 该错误与BASE偏移最大为99 */
146
147 /**************************** OAL --- 内存池 ****************************/
148 OAL_ERR_CODE_MEM_BASE = 10600, /* 基础值为10600 */
149 OAL_ERR_MEM_MAX_LEN = OAL_ERR_CODE_MEM_BASE, /* 内存块最大长度超过限制 */
150 OAL_ERR_MEM_SUB_CNT = (OAL_ERR_CODE_MEM_BASE + 1), /* 子内存池个数超过限制 */
151 OAL_ERR_MEM_DOG_TAG = (OAL_ERR_CODE_MEM_BASE + 2), /* 内存被踩 */
152 OAL_ERR_MEM_ADDR_ERR = (OAL_ERR_CODE_MEM_BASE + 3), /* 地址值异常 */
153 OAL_ERR_MEM_LEN_ZERO = (OAL_ERR_CODE_MEM_BASE + 4), /* 子池配置长度为0异常 */
154 OAL_ERR_MEM_ALIGN = (OAL_ERR_CODE_MEM_BASE + 5), /* 内存块4字节对齐异常 */
155 OAL_ERR_MEM_CALI_CFG = (OAL_ERR_CODE_MEM_BASE + 6), /* 校准所需NETBUFF数量配置异常 */
156
157 OAL_ERR_CODE_MEM_BUTT = (OAL_ERR_CODE_MEM_BASE + 99), /* 该错误最多与BASE偏移为99 */
158 /********************************* INIT模块 **********************************/
160
161 /**************************************************************************
162 各特性自定义错误,从20000开始,每个特性分配100个
163 **************************************************************************/
164 /**************************** AMSDU特性 ***********************************/
168
170
171 /********************************* 其它 **********************************/
172 /**************************** 11i 特性 ***********************************/
196 /* 错误码整理,先不删除原先的错误码,待全部上完库以后再删除 */
220
221/**************************** wapi 特性 ***********************************/
228
230 /********************************* 其它 **********************************/
231 /**************************** 11w 特性 ***********************************/
233 OAL_ERR_CODE_PMF_ACTIVE_DOWN = (OAL_ERR_CODE_PMF_BASE + 0), /* user的bit_pmf_active开关没有使能开启 */
234 OAL_ERR_CODE_PMF_SA_QUERY_REQ_SEND_FAIL = (OAL_ERR_CODE_PMF_BASE + 1), /* 发送sa query req操作失败 */
235 OAL_ERR_CODE_PMF_DISABLED = (OAL_ERR_CODE_PMF_BASE + 2), /* ManagementFramesActivated为0 */
236 OAL_ERR_CODE_PMF_SA_QUERY_START_FAIL = (OAL_ERR_CODE_PMF_BASE + 3), /* hmac_start_sa_query函数返回结果失败 */
237 OAL_ERR_CODE_PMF_SA_QUERY_DEL_USER_FAIL = (OAL_ERR_CODE_PMF_BASE + 4), /* SA query流程删除用户失败 */
239 OAL_ERR_CODE_PMF_BIP_CRIPTO_FAIL = (OAL_ERR_CODE_PMF_BASE + 6), /* dmac_bip_crypto函数,bip加密失败 */
240 OAL_ERR_CODE_PMF_BIP_DECRIPTO_FAIL = (OAL_ERR_CODE_PMF_BASE + 7), /* oal_crypto_bip_demic函数,bip解密失败 */
241 OAL_ERR_CODE_PMF_IGTK_INDX_FAIL = (OAL_ERR_CODE_PMF_BASE + 8), /* 给的igtk_index 错误 */
242 OAL_ERR_CODE_PMF_VAP_CAP_FAIL = (OAL_ERR_CODE_PMF_BASE + 9), /* mfpc&mfpr设置错误 */
243 OAL_ERR_CODE_PMF_VAP_ACTIVE_DOWN = (OAL_ERR_CODE_PMF_BASE + 10), /* mib dot11RSNAActived设置为OAL_FALES */
244 OAL_ERR_CODE_PMF_IGTK_NOT_EXIST = (OAL_ERR_CODE_PMF_BASE + 11), /* igtk不存在或者igtk_id值错误 */
245 OAL_ERR_CODE_PMF_ALIGN_ERR = (OAL_ERR_CODE_PMF_BASE + 12), /* bip加解密过程错误 */
247 OAL_ERR_CODE_PMF_MMIE_ERR = (OAL_ERR_CODE_PMF_BASE + 14), /* bip完整性校验检查失败 */
248 OAL_ERR_CODE_PMF_NO_PROTECTED_ERROR = (OAL_ERR_CODE_PMF_BASE + 15), /* PMF使能收到未加密的单播强健管理帧 */
250 OAL_ERR_CODE_PMF_NO_PROTECTED = (OAL_ERR_CODE_PMF_BASE + 17), /* PMF使能收到未加密的单播强健管理帧 */
251
253 /********************************* 其它 **********************************/
254 /***************hostapd/wpa_supplicant事件上报和下发特性 *****************/
256 OAL_ERR_CODE_CFG80211_SKB_MEM_FAIL = (OAL_ERR_CODE_CFG80211_BASE + 0), /* skb不足无法存消息头和内容 */
257 OAL_ERR_CODE_CFG80211_EMSGSIZE = (OAL_ERR_CODE_CFG80211_BASE + 1), /* 消息太长,属性无法填充 */
260
262
263 /********************************* OAL **********************************/
265
266 /**************************** OAL --- 内存池 ****************************/
268 OAL_ERR_CODE_OAL_MEM_GET_POOL_FAIL = (OAL_ERR_CODE_OAL_MEM_BASE + 0), /* 获取内存池全局指针失败 */
270 OAL_ERR_CODE_OAL_MEM_SKB_SUBPOOL_ID_ERR = (OAL_ERR_CODE_OAL_MEM_BASE + 2), /* 获取netbuf subpool id失败 */
271 OAL_ERR_CODE_OAL_MEM_GET_CFG_TBL_FAIL = (OAL_ERR_CODE_OAL_MEM_BASE + 3), /* 获取内存池配置信息失败 */
272 OAL_ERR_CODE_OAL_MEM_EXCEED_MAX_LEN = (OAL_ERR_CODE_OAL_MEM_BASE + 4), /* 内存块最大长度超过限制 */
273 OAL_ERR_CODE_OAL_MEM_EXCEED_SUBPOOL_CNT = (OAL_ERR_CODE_OAL_MEM_BASE + 5), /* 子内存池个数超过限制 */
275 OAL_ERR_CODE_OAL_MEM_ALREADY_FREE = (OAL_ERR_CODE_OAL_MEM_BASE + 7), /* 释放了一块已经被释放的内存 */
276 OAL_ERR_CODE_OAL_MEM_USER_CNT_ERR = (OAL_ERR_CODE_OAL_MEM_BASE + 8), /* 释放一块引用计数为0的内存 */
277 OAL_ERR_CODE_OAL_MEM_EXCEED_TOTAL_CNT = (OAL_ERR_CODE_OAL_MEM_BASE + 9), /* 可用内存块数目超过整个子内存池总内存块数 */
278 /**************************** OAL --- 事件 ****************************/
282
283 /********************************* OAM **********************************/
285
286 /**************************** OAM --- event *****************************/
288 OAL_ERR_CODE_OAM_EVT_USER_IDX_EXCEED = (OAL_ERR_CODE_OAM_EVT_BASE + 0), /* 用户索引超过最大值 */
289 OAL_ERR_CODE_OAM_EVT_FRAME_DIR_INVALID = (OAL_ERR_CODE_OAM_EVT_BASE + 1), /* 既不是发送流程,也不是接收流程 */
291 OAL_ERR_CODE_OAM_EVT_FR_LEN_INVALID = (OAL_ERR_CODE_OAM_EVT_BASE + 3), /* 帧体(包括帧头)长度异常 */
293 OAL_ERR_CODE_OAM_USER_ID_EXCEED = (OAL_ERR_CODE_OAM_EVT_BASE + 5), /* 用户索引超过最大值 */
294 OAL_ERR_CODE_OAM_DIRCT_INVALID = (OAL_ERR_CODE_OAM_EVT_BASE + 6), /* 既不是发送流程,也不是接收流程 */
295 OAL_ERR_CODE_OAM_FR_LEN_INVALID = (OAL_ERR_CODE_OAM_EVT_BASE + 7), /* 帧体(包括帧头)长度异常 */
297
299
300 /********************************* KeepAlive **********************************/
302 /**************************** KeepAlive --- event *****************************/
308
310
311 /******* PROXY ARP特性 COMP--skb处理完成; INCOMP--skb没有处理完成,留待后续处理******/
322 OAL_ERR_CODE_PROXY_ARP_REPLY_INCOMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 9), /* 接收到arp reply,转发 */
324
325 OAL_ERR_CODE_PROXY_ND_LEARN_USR_NOEXIST_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 11), /* ap发现该ns的源mac不存在 */
326 OAL_ERR_CODE_PROXY_ND_LEARN_USR_EXIST_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 12), /* ap发现ipv6地址已记录在hash中 */
329 OAL_ERR_CODE_PROXY_ND_NS_OPT_INVLD_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 15), /* 从NS的icmpv6 opt中获取ll失败 */
330 OAL_ERR_CODE_PROXY_ND_NS_FINDUSR_ERR_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 16), /* icmpv6中target ipv6不在hash中 */
332 OAL_ERR_CODE_PROXY_ND_NS_REPLY_NA2BSS_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 18), /* 收到NS后,AP正常回复NA到BSS */
334 OAL_ERR_CODE_PROXY_ND_NA_MCAST_NOT_LLA_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 20), /* 组播NA icmpv6 opt获取ll失败 */
335 OAL_ERR_CODE_PROXY_ND_NA_UCAST_NOT_LLA_INCOMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 21), /* 单播NA icmpv6 opt获取ll失败 */
336 OAL_ERR_CODE_PROXY_ND_NA_DUP_ADDR_INCOMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 22), /* NA中携带的ipv6地址冲突 */
341 OAL_ERR_CODE_PROXY_ARP_FINDUSR_ERR_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 27), /* arp中target ipv4不在hash表中 */
342 OAL_ERR_CODE_PROXY_OTHER_INCOMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 28), /* 不属于proxy 处理的帧 */
343 OAL_ERR_CODE_PROXY_ND_NS_REPLY_NA2ETH_COMP = (OAL_ERR_CODE_PROXY_ARP_BASE + 29), /* 收到NS后,AP正常回复NA到ETH */
345
346 /********************************* 队列模块 **********************************/
349
350 /********************************* SWP CBB模块 *******************************/
352 OAL_ERR_CODE_SWP_CBB_ALREADY_ACTIVE = (OAL_ERR_CODE_SWP_CBB_BASE + 0), /* 当前CBB接口已经激活 */
353 OAL_ERR_CODE_SWP_CBB_INT_REGISTER_FAIL = (OAL_ERR_CODE_SWP_CBB_BASE + 1), /* 中断处理函数注册失败 */
355 OAL_ERR_CODE_SWP_CBB_BUFFUR_FULL = (OAL_ERR_CODE_SWP_CBB_BASE + 3), /* SWP CBB RX或TX缓存已满 */
356
357 /********************************* Type A模块 ********************************/
361 OAL_ERR_LEVEL_BEYOND = (OAL_ERR_CODE_TYPE_A_BASE + 2), /* 级联次数超出 */
362
363 /********************************* Type A LISTEN NFC-DEP模块 ********************************/
365
366 /********************************* Type A POLL NFC-DEP模块 ********************************/
368
369 /********************************* NFC-DEP协议模块 ********************************/
383 OAL_ERR_CODE_NFC_DEP_TYPE_A_TAG1_PLT_SUCC = (OAL_ERR_CODE_NFC_DEP_BASE + 12), /* sens_res解析,tag1防冲突处理流程 */
384 OAL_ERR_CODE_NFC_DEP_TYPE_A_CL_ERR = (OAL_ERR_CODE_NFC_DEP_BASE + 13), /* SDD_REQ 级联值错误 */
389
390 /********************************* NFC CBB 模块**********************************/
399 OAL_ERR_CODE_CBB_INT_REGISTER_FAIL = (OAL_ERR_CODE_NFC_CBB_BASE + 7), /* INT_REGISTER_FAIL 错误 */
400 OAL_ERR_CODE_CBB_LSTN_RX2TX_TO = (OAL_ERR_CODE_NFC_CBB_BASE + 8), /* Listen模式,数据发送超时 */
401 OAL_ERR_CODE_NFC_RX_LSTN_RATE_ERR = (OAL_ERR_CODE_NFC_CBB_BASE + 9), /* type f Listen模式,接收数据速率错误 */
402
403 /********************************* 调度模块 **********************************/
405 OAL_ERR_CODE_SCHED_FSM_EXCEPT_FUN_NULL = (OAL_ERR_CODE_SCHED_BASE + 0), /* 状态机异常处理函数为NULL */
406 OAL_ERR_CODE_SCHED_FSM_STA_TAB_NULL = (OAL_ERR_CODE_SCHED_BASE + 1), /* 状态机状态表为NULL或无内容 */
408
409 /********************************* Tag4B模块 **********************************/
411 OAL_ERR_CODE_TAG4B_NOT_COMPLIANT_14443 = (OAL_ERR_CODE_TAG4B_BASE + 0), /* 不兼容14443协议错误 */
412 OAL_ERR_CODE_TAG4B_OPCODE_ERR = (OAL_ERR_CODE_TAG4B_BASE + 1), /* ATTRIB操作码错误 */
417
418 /********************************* ISO-DEP协议模块 **********************************/
420 OAL_ERR_CODE_ISO_DEP_IBLOCK_RETRY_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 0), /* IBLOCK重传超过最大值错误 */
421 OAL_ERR_CODE_ISO_DEP_OVER_FSC_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 1), /* 发送接收block长度大于FSC错误 */
422 OAL_ERR_CODE_ISO_DEP_OVER_FSD_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 2), /* 发送接收block长度大于FSD错误 */
427 OAL_ERR_CODE_ISO_DEP_ACK_RETRY_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 7), /* R_ACK重传超过最大值错误 */
428 OAL_ERR_CODE_ISO_DEP_NAK_RETRY_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 8), /* R_NAK重传超过最大值错误 */
429 OAL_ERR_CODE_ISO_DEP_WTX_RETRY_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 9), /* S_WTX重传超过最大值错误 */
430 OAL_ERR_CODE_ISO_DEP_DSL_RETRY_ERR = (OAL_ERR_CODE_ISO_DEP_BASE + 10), /* S_DSL重传超过最大值错误 */
435
436 /********************************* TYPE B协议模块 **********************************/
439 OAL_ERR_CODE_SLOT_NUM_ERR = (OAL_ERR_CODE_TYPE_B_BASE + 2), /* 时间槽数量错误 */
441 OAL_ERR_CODE_TYPE_B_CR_AFI_ERR = (OAL_ERR_CODE_TYPE_B_BASE + 4), /* AFI不一致的错误 */
442 OAL_ERR_CODE_DID_OVER_ERR = (OAL_ERR_CODE_TYPE_B_BASE + 5), /* did值超出范围 */
444 OAL_ERR_CODE_MBL_ERR = (OAL_ERR_CODE_TYPE_B_BASE + 7), /* MBL取值不正确 */
445 /********************************* TAG4A模块 **********************************/
452 /********************************* TYPE F协议模块 **********************************/
457 /********************************* TAG3协议模块 **********************************/
462
463 /********************************* NCI协议RF DISCOVERY模块 **********************************/
467
468 /********************************* TECH DETECT ACT模块 **********************************/
470 OAL_ERR_CODE_TECH_DETECT_ACT_TECH_TYPE_ERR = (OAL_ERR_CODE_TECH_DETECT_ACT_BASE + 1), /* 技术类型都不尽兴侦测的错误 */
471
472 /********************************* NCI协议模块**********************************/
475 OAL_ERR_CODE_NCI_UNKNOWN_MSG = (OAL_ERR_CODE_NCI_BASE + 2), /* 不能识别的命令 */
477 OAL_ERR_CODE_NCI_DISPATCH_FUN_NULL = (OAL_ERR_CODE_NCI_BASE + 4), /* Dispatch中的函数为NULL */
478 OAL_ERR_CODE_NCI_VAL_LEN_TOO_SHORT = (OAL_ERR_CODE_NCI_BASE + 5), /* 存储参数的空间不足 */
479 OAL_ERR_CODE_NCI_RECV_MSG_TOO_BIG = (OAL_ERR_CODE_NCI_BASE + 6), /* 接收的消息组装后存不下 */
480 OAL_ERR_CODE_NCI_PARAM_ID_TOO_BIG = (OAL_ERR_CODE_NCI_BASE + 7), /* 参数的ID超出范围 */
481 OAL_ERR_CODE_NCI_GID_OID_INVALID = (OAL_ERR_CODE_NCI_BASE + 8), /* NCI消息的GID或OID无效 */
482 OAL_ERR_CODE_NCI_PACKET_INVALID = (OAL_ERR_CODE_NCI_BASE + 9), /* 接收到的NCI Packet是无效的 */
483
484 /********************************* SHDLC协议模块**********************************/
486 OAL_ERR_RECV_FRAME_TYPE_DIF_FSM = (OAL_ERR_CODE_SHDLC_BASE + 1), /* 接收到的帧类型与当前状态不符 */
487 OAL_ERR_RECV_RSET_LENGTH = (OAL_ERR_CODE_SHDLC_BASE + 2), /* 接收到的RSET帧的payload长度超出限定范围 */
488 OAL_ERR_RECV_FRAME_TYPE_UNKNOWN = (OAL_ERR_CODE_SHDLC_BASE + 3), /* 接收到帧的类型未知 */
489 OAL_ERR_RECV_I_FRAME_LENGTH = (OAL_ERR_CODE_SHDLC_BASE + 4), /* 接收到帧的I帧的payload长度超出限定范围 */
490
491 /********************************* 漫游模块**********************************/
503 OAL_ERR_CODE_ROAM_NO_RESPONSE = (OAL_ERR_CODE_ROAM_BASE + 10), /* AUTH/REASSOC没有响应 */
504
505 /********************************* CSA模块**********************************/
508
509 /********************************* 用户扩展模块 **********************************/
512
513 /********************************* HW RESET 模块*************************************/
519 OAL_ERR_CODE_HW_RESET_TX_QUEUE_MEMALLOC = (OAL_ERR_CODE_HW_RESET_BASE + 4), /* reset流程申请tx fake queue失败 */
520
521 /********************************* 11V 模块*************************************/
524
525 /********************************* RADAR 模块*************************************/
527 OAL_ERR_CODE_DFS_CHAN_BLOCK_DUE_TO_RADAR = (OAL_ERR_CODE_DFS_BASE + 0), /* 信道检测到雷达处于不可用状态 */
528
529 /********************************* WAL 模块*************************************/
534
535 /******************************** ALG 模块 **************************************/
537 /* Autorate err code */
566
567 /**************************************************************************
568 Common exception
569 **************************************************************************/
570 OAL_FAIL = 65535, /* 通用异常65535 以上异常无法匹配时使用 */
571
574
576
577#ifdef __cplusplus
578#if __cplusplus
579 }
580#endif
581#endif
582
583#endif /* end of common_error_code.h */
584
osal_u32 oal_err_code_enum_uint32
Definition common_error_code_rom.h:575
oal_err_code_enum
Definition common_error_code_rom.h:17
@ OAL_ERR_LEVEL_BEYOND
Definition common_error_code_rom.h:361
@ OAL_ERR_CODE_MAC_DEVICE_NULL
Definition common_error_code_rom.h:41
@ OAL_ERR_CODE_SLOT_NUM_ERR
Definition common_error_code_rom.h:439
@ OAL_ERR_CODE_HMAC_SECURITY_AGING_INVALID
Definition common_error_code_rom.h:214
@ OAL_ERR_CODE_AR_RATE_ADD_REACH_MAX
Definition common_error_code_rom.h:547
@ OAL_ERR_CODE_AR_RATE_TBL_PARAM_ERR
Definition common_error_code_rom.h:550
@ OAL_ERR_CODE_CONFIG_BUSY
Definition common_error_code_rom.h:58
@ OAL_ERR_CODE_PROXY_ND_LEARN_USR_SUCC_COMP
Definition common_error_code_rom.h:327
@ OAL_ERR_CODE_SECR_KEY_LEN
Definition common_error_code_rom.h:140
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_DID_ERR
Definition common_error_code_rom.h:373
@ OAL_ERR_CODE_PROXY_ARP_REPLY_INCOMP
Definition common_error_code_rom.h:322
@ OAL_ERR_CODE_HW_RESET_PHY_SAVE_MEMALLOC
Definition common_error_code_rom.h:515
@ OAL_ERR_CODE_TAG4B_NOT_COMPLIANT_14443
Definition common_error_code_rom.h:411
@ OAL_ERR_CODE_WAL_FAILURE
Definition common_error_code_rom.h:531
@ OAL_ERR_CODE_MSG_LENGTH_ERR
Definition common_error_code_rom.h:71
@ OAL_ERR_CODE_KEEPALIVE_SMALL_LIMIT
Definition common_error_code_rom.h:307
@ OAL_ERR_CODE_ROAM_STATE_UNEXPECT
Definition common_error_code_rom.h:497
@ OAL_ERR_CODE_ROAM_INVALID_USER
Definition common_error_code_rom.h:495
@ OAL_ERR_CODE_NCI_VAL_LEN_TOO_SHORT
Definition common_error_code_rom.h:478
@ OAL_ERR_MEM_CALI_CFG
Definition common_error_code_rom.h:155
@ OAL_ERR_CODE_RX_AMSDU_DISORDER
Definition common_error_code_rom.h:131
@ OAL_ERR_CODE_OAM_EVT_USER_IDX_EXCEED
Definition common_error_code_rom.h:288
@ OAL_ERR_CODE_DIV_ZERO
Definition common_error_code_rom.h:36
@ OAL_ERR_CODE_SECR_CHIPER_TYPE
Definition common_error_code_rom.h:143
@ OAL_ERR_CODE_ISO_DEP_ACK_RETRY_ERR
Definition common_error_code_rom.h:427
@ OAL_ERR_CODE_TECH_DETECT_ACT_TECH_TYPE_ERR
Definition common_error_code_rom.h:470
@ OAL_ERR_CODE_HMAC_SECURITY_THRESHOLD_INVALID
Definition common_error_code_rom.h:217
@ OAL_ERR_CODE_ROAM_EVENT_UXEXPECT
Definition common_error_code_rom.h:498
@ OAL_ERR_CODE_TAG3_CUP_RES_OPCODE_ERR
Definition common_error_code_rom.h:460
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_FSL_ERR
Definition common_error_code_rom.h:377
@ OAL_ERR_CODE_ISO_DEP_DID_ERR
Definition common_error_code_rom.h:424
@ OAL_ERR_RECV_RSET_LENGTH
Definition common_error_code_rom.h:487
@ OAL_ERR_CODE_HMAC_SECURITY_PARAMETERS
Definition common_error_code_rom.h:205
@ OAL_ERR_CODE_TAG4A_ATS_TL_ERR
Definition common_error_code_rom.h:447
@ OAL_ERR_CODE_PROXY_ND_NA_MCAST_NOT_LLA_COMP
Definition common_error_code_rom.h:334
@ OAL_ERR_CODE_PROXY_ND_INVLD_SKB1_INCOMP
Definition common_error_code_rom.h:319
@ OAL_ERR_CODE_OAM_EVT_FRAME_DIR_INVALID
Definition common_error_code_rom.h:289
@ OAL_ERR_CODE_WAPI_DECRYPT_FAIL
Definition common_error_code_rom.h:224
@ OAL_ERR_CODE_CONFIG_BUTT
Definition common_error_code_rom.h:66
@ OAL_ERR_CODE_HMAC_SECURITY_CAP_BSS
Definition common_error_code_rom.h:209
@ OAL_ERR_CODE_MEM_BUTT
Definition common_error_code_rom.h:157
@ OAL_ERR_CODE_FREE_MEM_FAIL
Definition common_error_code_rom.h:38
@ OAL_ERR_CODE_NCI_BASE
Definition common_error_code_rom.h:473
@ OAL_ERR_CODE_HMAC_SECURITY_PORT_INVALID
Definition common_error_code_rom.h:212
@ OAL_ERR_CODE_TAG4A_RATS_OPCODE_ERR
Definition common_error_code_rom.h:450
@ OAL_ERR_CODE_KEEPALIVE_BUTT
Definition common_error_code_rom.h:309
@ OAL_ERR_CODE_AR_OVER_AVAI_ROOM
Definition common_error_code_rom.h:548
@ OAL_ERR_CODE_PROXY_ND_NS_FINDUSR_ERR_COMP
Definition common_error_code_rom.h:330
@ OAL_ERR_CODE_OAL_MEM_USER_CNT_ERR
Definition common_error_code_rom.h:276
@ OAL_ERR_CODE_HW_RESET_MAC_SAVE_SIZELIMIT
Definition common_error_code_rom.h:517
@ OAL_ERR_CODE_ISO_DEP_WTX_RETRY_ERR
Definition common_error_code_rom.h:429
@ OAL_ERR_CODE_CFG80211_BASE
Definition common_error_code_rom.h:255
@ OAL_ERR_CODE_MSG_IE_MISS
Definition common_error_code_rom.h:74
@ OAL_ERR_CODE_ALREADY_OPEN
Definition common_error_code_rom.h:25
@ OAL_ERR_CODE_TAG4B_BASE
Definition common_error_code_rom.h:410
@ OAL_ERR_CODE_SCHED_FSM_EXCEPT_FUN_NULL
Definition common_error_code_rom.h:405
@ OAL_ERR_CODE_HW_RESET_PHY_SAVE_SIZELIMIT
Definition common_error_code_rom.h:518
@ OAL_ERR_CODE_NCI_DISPATCH_FUN_NULL
Definition common_error_code_rom.h:477
@ OAL_ERR_CODE_DSCR_BUTT
Definition common_error_code_rom.h:136
@ OAL_ERR_CODE_USER_INDX_UNSYNC
Definition common_error_code_rom.h:60
@ OAL_ERR_CODE_SECR_USER_INVAILD
Definition common_error_code_rom.h:142
@ OAL_ERR_CODE_PROXY_OTHER_INCOMP
Definition common_error_code_rom.h:342
@ OAL_ERR_CODE_ISO_DEP_BASE
Definition common_error_code_rom.h:419
@ OAL_ERR_CODE_HMAC_SECURITY_WRONG_KEY
Definition common_error_code_rom.h:204
@ OAL_ERR_CODE_AR_INVALID_RATE_ABILITY
Definition common_error_code_rom.h:565
@ OAL_ERR_CODE_FSD_FSC_TR0_TR1_TR2_VALUE_ERR
Definition common_error_code_rom.h:443
@ OAL_ERR_CODE_AR_PROBE_STAGE_ERR
Definition common_error_code_rom.h:540
@ OAL_ERR_CODE_ROAM_FRAMER_SUB_TYPE
Definition common_error_code_rom.h:499
@ OAL_ERR_CODE_RX_DSCR_LOSE
Definition common_error_code_rom.h:132
@ OAL_ERR_CODE_CSA_CONFIG_BW_UNSUPPORTED
Definition common_error_code_rom.h:507
@ OAL_ERR_CODE_HMAC_SECURITY_KEY_LEN
Definition common_error_code_rom.h:199
@ OAL_ERR_CODE_SECR_BASE
Definition common_error_code_rom.h:139
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_PAYLOAD_ERR
Definition common_error_code_rom.h:381
@ OAL_ERR_CODE_AR_RATE_PARAM_ERR
Definition common_error_code_rom.h:539
@ OAL_ERR_CODE_TYPE_B_SENSB_RES_OPCODE_ERR
Definition common_error_code_rom.h:440
@ OAL_ERR_CODE_OAL_MEM_ALREADY_FREE
Definition common_error_code_rom.h:275
@ OAL_ERR_CODE_ALG_BASE
Definition common_error_code_rom.h:536
@ OAL_ERR_CODE_PROXY_ARP_INVLD_SKB_INCOMP
Definition common_error_code_rom.h:313
@ OAL_ERR_CODE_HMAC_SECURITY_CAP
Definition common_error_code_rom.h:208
@ OAL_ERR_CODE_WAPI_ENRYPT_FAIL
Definition common_error_code_rom.h:226
@ OAL_ERR_CODE_WAPI_BASE
Definition common_error_code_rom.h:222
@ OAL_ERR_CODE_OAL_EVENT_BASE
Definition common_error_code_rom.h:279
@ OAL_ERR_CODE_OAL_BASE
Definition common_error_code_rom.h:264
@ OAL_ERR_CODE_PROXY_ARP_CREATE_FAIL_COMP
Definition common_error_code_rom.h:318
@ OAL_ERR_CODE_KEEPALIVE_INVALID_VAP
Definition common_error_code_rom.h:305
@ OAL_ERR_CODE_CFG80211_MCS_EXCEED
Definition common_error_code_rom.h:258
@ OAL_ERR_CODE_PMF_SA_QUERY_START_FAIL
Definition common_error_code_rom.h:236
@ OAL_ERR_CODE_DSCR_BASE
Definition common_error_code_rom.h:130
@ OAL_ERR_CODE_ISO_DEP_DSL_RETRY_ERR
Definition common_error_code_rom.h:430
@ OAL_ERR_CODE_OAM_USER_ID_EXCEED
Definition common_error_code_rom.h:293
@ OAL_ERR_MEM_ADDR_ERR
Definition common_error_code_rom.h:152
@ OAL_ERR_CORE_NCI_PAYLOAD_ERR
Definition common_error_code_rom.h:476
@ OAL_ERR_CODE_PMF_MMIE_ERR
Definition common_error_code_rom.h:247
@ OAL_ERR_CODE_CCPRIV_CMD_NOT_FOUND
Definition common_error_code_rom.h:533
@ OAL_ERR_CODE_PMF_SA_QUERY_DEL_USER_FAIL
Definition common_error_code_rom.h:237
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_CASCADE_ERR
Definition common_error_code_rom.h:386
@ OAL_ERR_CODE_ROAM_FRAMER_LEN
Definition common_error_code_rom.h:500
@ OAL_ERR_MAIN_INIT_FRW
Definition common_error_code_rom.h:87
@ OAL_ERR_CODE_PROXY_ND_LEARN_USR_EXIST_COMP
Definition common_error_code_rom.h:326
@ OAL_ERR_CODE_PMF_ALIGN_ERR
Definition common_error_code_rom.h:245
@ OAL_ERR_CODE_WAL_BASE
Definition common_error_code_rom.h:530
@ OAL_ERR_CODE_PROXY_ND_LEARN_USR_FAIL_INCOMP
Definition common_error_code_rom.h:328
@ OAL_ERR_CODE_PMF_BIP_CRIPTO_FAIL
Definition common_error_code_rom.h:239
@ OAL_ERR_CODE_KEEPALIVE_BASE
Definition common_error_code_rom.h:301
@ OAL_ERR_CODE_11V_REPEAT
Definition common_error_code_rom.h:523
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_TAG1_PLT_SUCC
Definition common_error_code_rom.h:383
@ OAL_ERR_CODE_AR_FRAME_TYPE_INVALID
Definition common_error_code_rom.h:557
@ OAL_ERR_CODE_SECURITY_PARAMETERS
Definition common_error_code_rom.h:182
@ OAL_ERR_CODE_HMAC_SECURITY_KEY_TYPE
Definition common_error_code_rom.h:198
@ OAL_ERR_CODE_TAG4A_BASE
Definition common_error_code_rom.h:446
@ OAL_ERR_INIT_HAL_CHIP
Definition common_error_code_rom.h:97
@ OAL_ERR_CODE_CFG80211_EMSGSIZE
Definition common_error_code_rom.h:257
@ OAL_ERR_CODE_PMF_BIP_DECPT_FAIL
Definition common_error_code_rom.h:249
@ OAL_ERR_MAIN_INIT_BASE
Definition common_error_code_rom.h:85
@ OAL_ERR_CODE_CBB_LSTN_RX2TX_TO
Definition common_error_code_rom.h:400
@ OAL_ERR_CODE_PMF_ACTIVE_DOWN
Definition common_error_code_rom.h:233
@ OAL_ERR_CODE_SECURITY_RESETIME_INVALID
Definition common_error_code_rom.h:194
@ OAL_ERR_CODE_OAL_EVENT_Q_EMPTY
Definition common_error_code_rom.h:280
@ OAL_ERR_CODE_IPC_QUEUE_FULL
Definition common_error_code_rom.h:76
@ OAL_ERR_CODE_USER_EXTEND_DISABLED
Definition common_error_code_rom.h:511
@ OAL_ERR_CODE_OAM_BASE
Definition common_error_code_rom.h:284
@ OAL_ERR_CODE_ROAM_INVALID_VAP_STATUS
Definition common_error_code_rom.h:501
@ OAL_ERR_CODE_NFC_RX_BCC_ERR
Definition common_error_code_rom.h:394
@ OAL_ERR_CODE_AR_SUITABLE_SERVICE_TYPE_NOT_FOUND
Definition common_error_code_rom.h:560
@ OAL_ERR_CODE_OAL_MEM_ALLOC_CTRL_BLK_FAIL
Definition common_error_code_rom.h:269
@ OAL_ERR_CODE_INIT_BASE
Definition common_error_code_rom.h:159
@ OAL_ERR_CODE_NFC_RX_PTY_ERR
Definition common_error_code_rom.h:393
@ OAL_ERR_CODE_WAPI_MIC_CMP_FAIL
Definition common_error_code_rom.h:227
@ OAL_ERR_CODE_MSG_ACT_FUN_NULL
Definition common_error_code_rom.h:79
@ OAL_ERR_CODE_HW_RESET_MAC_SAVE_MEMALLOC
Definition common_error_code_rom.h:516
@ OAL_ERR_CODE_CLOSE_FILE_FAIL
Definition common_error_code_rom.h:108
@ OAL_ERR_CODE_OAM_EVT_FR_HDR_LEN_INVALID
Definition common_error_code_rom.h:290
@ OAL_ERR_CODE_ADD_VAP_INDX_UNSYNC
Definition common_error_code_rom.h:63
@ OAL_ERR_CODE_WRITE_FILE_FAIL
Definition common_error_code_rom.h:107
@ OAL_ERR_CODE_ROAM_DISABLED
Definition common_error_code_rom.h:493
@ OAL_ERR_CODE_PROXY_ARP_REPLY2BSS_COMP
Definition common_error_code_rom.h:316
@ OAL_ERR_CODE_PROXY_ARP_LEARN_USR_NOTEXIST_COMP
Definition common_error_code_rom.h:314
@ OAL_ERR_MEM_DOG_TAG
Definition common_error_code_rom.h:151
@ OAL_ERR_CODE_PROXY_ND_NA_DUP_ADDR_INCOMP
Definition common_error_code_rom.h:336
@ OAL_ERR_CODE_MSG_IE_VALUE_ERR
Definition common_error_code_rom.h:75
@ OAL_ERR_CODE_11V_BASE
Definition common_error_code_rom.h:522
@ OAL_ERR_TIME_OUT_TIMES_BEYOND
Definition common_error_code_rom.h:360
@ OAL_ERR_CODE_SCHED_BASE
Definition common_error_code_rom.h:404
@ OAL_ERR_CODE_INVALID_CONFIG
Definition common_error_code_rom.h:54
@ OAL_ERR_CODE_CSA_BASE
Definition common_error_code_rom.h:506
@ OAL_ERR_DMAC_INIT_MAC_RES
Definition common_error_code_rom.h:93
@ OAL_ERR_CODE_SECURITY_AUTH_TYPE
Definition common_error_code_rom.h:183
@ OAL_ERR_CODE_SECURITY_CAP_BSS
Definition common_error_code_rom.h:185
@ OAL_ERR_CODE_HMAC_AMSDU_DISABLE
Definition common_error_code_rom.h:166
@ OAL_ERR_CODE_OAL_MEM_BASE
Definition common_error_code_rom.h:267
@ OAL_ERR_CODE_MSG_BUTT
Definition common_error_code_rom.h:81
@ OAL_ERR_CODE_TYPE_B_BASE
Definition common_error_code_rom.h:437
@ OAL_ERR_CODE_PROXY_ND_NA_SOLICITED_INCOMP
Definition common_error_code_rom.h:338
@ OAL_ERR_CODE_MBL_ERR
Definition common_error_code_rom.h:444
@ OAL_ERR_CODE_WAPI_BUTT
Definition common_error_code_rom.h:229
@ OAL_ERR_CODE_RX_DSCR_AMSDU_DISORDER
Definition common_error_code_rom.h:134
@ OAL_ERR_CODE_ST_INVALID_SCH
Definition common_error_code_rom.h:562
@ OAL_ERR_CODE_AR_SERVICE_TYPE_INVALID
Definition common_error_code_rom.h:558
@ OAL_ERR_CODE_KEEPALIVE_CONFIG_VAP
Definition common_error_code_rom.h:303
@ OAL_ERR_MEM_ALIGN
Definition common_error_code_rom.h:154
@ OAL_ERR_CODE_TYPE_F_BASE
Definition common_error_code_rom.h:453
@ OAL_ERR_CODE_HW_RESET_TX_QUEUE_MEMALLOC
Definition common_error_code_rom.h:519
@ OAL_ERR_CODE_NCI_CONFIG_PARAM_INVALID
Definition common_error_code_rom.h:474
@ OAL_ERR_CODE_HW_RESET_BASE
Definition common_error_code_rom.h:514
@ OAL_ERR_CODE_CANNOT_CLOSE_WCPU
Definition common_error_code_rom.h:28
@ OAL_ERR_CODE_SECURITY_CAP
Definition common_error_code_rom.h:184
@ OAL_ERR_CODE_TAG4B_BR_ERR
Definition common_error_code_rom.h:415
@ OAL_ERR_CODE_SCHED_PUSH_QUEUE_ID_INVALID
Definition common_error_code_rom.h:407
@ OAL_ERR_CODE_TAG4A_PPS_DID_ERR
Definition common_error_code_rom.h:449
@ OAL_ERR_CODE_NFC_RX_BUFF_FRAME_TYPE_ERR
Definition common_error_code_rom.h:398
@ OAL_ERR_CODE_AR_MULTI_TO_SINGLE_NSS_NOT_SWITCH
Definition common_error_code_rom.h:561
@ OAL_ERR_CODE_CFG80211_BUTT
Definition common_error_code_rom.h:261
@ OAL_ERR_CODE_OAL_MEM_EXCEED_TOTAL_CNT
Definition common_error_code_rom.h:277
@ OAL_ERR_CODE_TAG4B_NFCID_ERR
Definition common_error_code_rom.h:414
@ OAL_ERR_CODE_SECURITY_BUFF_NUM
Definition common_error_code_rom.h:179
@ OAL_ERR_CODE_AR_NO_APPROPRIATE_RATE_INDEX_FOUND
Definition common_error_code_rom.h:541
@ OAL_ERR_CODE_CONFIG_TIMEOUT
Definition common_error_code_rom.h:57
@ OAL_ERR_CODE_PROXY_ND_NA_UNSOLICITED_COMP
Definition common_error_code_rom.h:337
@ OAL_ERR_DMAC_INIT_ADAPT
Definition common_error_code_rom.h:92
@ OAL_ERR_CODE_SECURITY_KEY_TYPE
Definition common_error_code_rom.h:174
@ OAL_ERR_CODE_MSG_NOT_FIND_ACT_TAB
Definition common_error_code_rom.h:78
@ OAL_ERR_CODE_ISO_DEP_PCB_FIX_NUM_ERR
Definition common_error_code_rom.h:431
@ OAL_ERR_CODE_MSG_NOT_FIND_STA_TAB
Definition common_error_code_rom.h:77
@ OAL_ERR_CODE_WAPI_NETBUFF_LEN_ERR
Definition common_error_code_rom.h:223
@ OAL_ERR_CODE_OAM_EVT_BASE
Definition common_error_code_rom.h:287
@ OAL_ERR_CODE_TAG4A_PPS_RES_ERR
Definition common_error_code_rom.h:448
@ OAL_ERR_CODE_DID_OVER_ERR
Definition common_error_code_rom.h:442
@ OAL_ERR_MEM_MAX_LEN
Definition common_error_code_rom.h:149
@ OAL_ERR_CODE_WAL_BUSY
Definition common_error_code_rom.h:532
@ OAL_ERR_CODE_HMAC_SECURITY_USER_INVAILD
Definition common_error_code_rom.h:206
@ OAL_ERR_CODE_NCI_GID_OID_INVALID
Definition common_error_code_rom.h:481
@ OAL_ERR_CODE_MSG_TYPE_ERR
Definition common_error_code_rom.h:72
@ OAL_ERR_CODE_PROXY_ND_ICMPV6_NOT_NSNA_INCOMP
Definition common_error_code_rom.h:340
@ OAL_ERR_CODE_HMAC_SECURITY_CAP_PHY
Definition common_error_code_rom.h:211
@ OAL_ERR_CODE_SECURITY_BASE
Definition common_error_code_rom.h:173
@ OAL_ERR_CODE_AR_RATE_ADD_REACH_MIN
Definition common_error_code_rom.h:546
@ OAL_ERR_CODE_PROXY_ARP_LEARN_USR_COMP
Definition common_error_code_rom.h:315
@ OAL_ERR_CODE_SECURITY_BUFF_LEN
Definition common_error_code_rom.h:178
@ OAL_ERR_CODE_AR_PROBE_TIME_AGED
Definition common_error_code_rom.h:564
@ OAL_ERR_CODE_NFC_DEP_BASE
Definition common_error_code_rom.h:370
@ OAL_ERR_CODE_ROAM_BASE
Definition common_error_code_rom.h:492
@ OAL_ERR_CODE_ISO_DEP_BN_ERR
Definition common_error_code_rom.h:426
@ OAL_ERR_CODE_PROXY_ND_LEARN_USR_NOEXIST_COMP
Definition common_error_code_rom.h:325
@ OAL_ERR_CODE_AR_PROBE_FINISH
Definition common_error_code_rom.h:559
@ OAL_ERR_CODE_PMF_BIP_AES_CMAC_ENCRYPT_FAIL
Definition common_error_code_rom.h:238
@ OAL_ERR_CODE_ISO_DEP_NAK_RETRY_ERR
Definition common_error_code_rom.h:428
@ OAL_ERR_CODE_STR_BASE
Definition common_error_code_rom.h:123
@ OAL_ERR_CODE_NFC_DEP_NFCID_ERR
Definition common_error_code_rom.h:385
@ OAL_ERR_CODE_NFC_DEP_FRAME_OPCODE_ERR
Definition common_error_code_rom.h:372
@ OAL_ERR_CODE_ROAM_INVALID_VAP
Definition common_error_code_rom.h:494
@ OAL_ERR_CODE_PROXY_ND_NS_CREATE_NA_FAIL_COMP
Definition common_error_code_rom.h:331
@ OAL_ERR_CODE_CFG_REG_TIMEOUT
Definition common_error_code_rom.h:44
@ OAL_ERR_CODE_NCI_PARAM_ID_TOO_BIG
Definition common_error_code_rom.h:480
@ OAL_ERR_CODE_AR_INVALID_PKT
Definition common_error_code_rom.h:563
@ OAL_ERR_CODE_TECH_DETECT_ACT_BASE
Definition common_error_code_rom.h:469
@ OAL_ERR_CODE_HMAC_SECURITY_KEY_ID
Definition common_error_code_rom.h:200
@ OAL_ERR_CODE_QUEUE_CNT_ZERO
Definition common_error_code_rom.h:348
@ OAL_ERR_CODE_SWP_CBB_ALREADY_ACTIVE
Definition common_error_code_rom.h:352
@ OAL_ERR_CODE_SECURITY_MODE_INVALID
Definition common_error_code_rom.h:190
@ OAL_ERR_RECV_I_FRAME_LENGTH
Definition common_error_code_rom.h:489
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_DRI_ERR
Definition common_error_code_rom.h:376
@ OAL_ERR_CODE_START_TIMRE_FAIL
Definition common_error_code_rom.h:39
@ OAL_ERR_CODE_NCI_RECV_MSG_TOO_BIG
Definition common_error_code_rom.h:479
@ OAL_ERR_CODE_SECURITY_THRESHOLD_INVALID
Definition common_error_code_rom.h:193
@ OAL_ERR_CODE_HMAC_AMSDU_BASE
Definition common_error_code_rom.h:165
@ OAL_ERR_CODE_ISO_DEP_OVER_FSD_ERR
Definition common_error_code_rom.h:422
@ OAL_ERR_CODE_TAG4B_OPCODE_ERR
Definition common_error_code_rom.h:412
@ OAL_ERR_SYS_BUTT
Definition common_error_code_rom.h:48
@ OAL_ERR_CODE_NETBUF_INDEX_CHANGE
Definition common_error_code_rom.h:43
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_CT_ERR
Definition common_error_code_rom.h:388
@ OAL_ERR_CODE_OAM_BUTT
Definition common_error_code_rom.h:298
@ OAL_ERR_CODE_TAG4B_PARAM3_MSB_ERR
Definition common_error_code_rom.h:416
@ OAL_ERR_CODE_OAL_MEM_EXCEED_MAX_LEN
Definition common_error_code_rom.h:272
@ OAL_FAIL
Definition common_error_code_rom.h:570
@ OAL_ERR_CODE_HMAC_SECURITY_CHIPER_TYPE
Definition common_error_code_rom.h:201
@ OAL_ERR_CODE_CFG_REG_ERROR
Definition common_error_code_rom.h:45
@ OAL_ERR_CODE_CONFIG_UNSUPPORT
Definition common_error_code_rom.h:55
@ OAL_ERR_CODE_NFC_DEP_POLL_BASE
Definition common_error_code_rom.h:367
@ OAL_ERR_CODE_RF_DISCOVERY_BASE
Definition common_error_code_rom.h:464
@ OAL_ERR_CODE_PMF_VAP_CAP_FAIL
Definition common_error_code_rom.h:242
@ OAL_ERR_CODE_OAM_FR_LEN_INVALID
Definition common_error_code_rom.h:295
@ OAL_ERR_CODE_ISO_DEP_PROTOCOL_ERR
Definition common_error_code_rom.h:433
@ OAL_ERR_CODE_PMF_IGTK_INDX_FAIL
Definition common_error_code_rom.h:241
@ OAL_ERR_CODE_AR_PROBE_DIRECTION_ERR
Definition common_error_code_rom.h:542
@ OAL_ERR_CODE_CONFIG_BASE
Definition common_error_code_rom.h:53
@ OAL_ERR_CODE_KEEPALIVE_BIG_INTERVAL
Definition common_error_code_rom.h:304
@ OAL_ERR_RECV_FRAME_TYPE_UNKNOWN
Definition common_error_code_rom.h:488
@ OAL_ERR_CODE_PMF_BIP_DECRIPTO_FAIL
Definition common_error_code_rom.h:240
@ OAL_ERR_CODE_SECURITY_WRONG_KEY
Definition common_error_code_rom.h:180
@ OAL_ERR_CODE_SECURITY_BUTT
Definition common_error_code_rom.h:195
@ OAL_ERR_CODE_AR_RATE_INFO_NOT_INIT
Definition common_error_code_rom.h:544
@ OAL_ERR_CODE_OAL_MEM_GET_POOL_FAIL
Definition common_error_code_rom.h:268
@ OAL_ERR_CODE_DSCR_RX_ABNORMAL
Definition common_error_code_rom.h:133
@ OAL_ERR_CODE_PMF_DISABLED
Definition common_error_code_rom.h:235
@ OAL_ERR_CODE_SECURITY_KEY_LEN
Definition common_error_code_rom.h:175
@ OAL_ERR_CODE_PROXY_ND_NS_OPT_INVLD_COMP
Definition common_error_code_rom.h:329
@ OAL_ERR_CODE_HMAC_SECURITY_MAC_INVALID
Definition common_error_code_rom.h:213
@ OAL_ERR_CODE_HCC_BUF_DROP
Definition common_error_code_rom.h:117
@ OAL_ERR_CODE_SWP_CBB_BUFFUR_FULL
Definition common_error_code_rom.h:355
@ OAL_ERR_CODE_SEC_BUTT
Definition common_error_code_rom.h:145
@ OAL_ERR_CODE_HCC_BUTT
Definition common_error_code_rom.h:118
@ OAL_ERR_CODE_OAM_DIRCT_INVALID
Definition common_error_code_rom.h:294
@ OAL_ERR_CODE_PM_BASE
Definition common_error_code_rom.h:24
@ OAL_ERR_CODE_OAM_EVT_DSCR_LEN_INVALID
Definition common_error_code_rom.h:292
@ OAL_ERR_CODE_MAGIC_NUM_FAIL
Definition common_error_code_rom.h:42
@ OAL_ERR_CODE_ISO_DEP_OVER_FSC_ERR
Definition common_error_code_rom.h:421
@ OAL_ERR_CODE_PMF_REPLAY_ATTAC
Definition common_error_code_rom.h:246
@ OAL_ERR_CODE_PROXY_ARP_NOT_REQ_REPLY_INCOMP
Definition common_error_code_rom.h:323
@ OAL_ERR_CODE_SCHED_FSM_STA_TAB_NULL
Definition common_error_code_rom.h:406
@ OAL_ERR_CODE_HMAC_MSDU_LEN_OVER
Definition common_error_code_rom.h:167
@ OAL_ERR_CODE_ISO_DEP_IBLOCK_RETRY_ERR
Definition common_error_code_rom.h:420
@ OAL_ERR_DMAC_INIT_STATE
Definition common_error_code_rom.h:90
@ OAL_ERR_CODE_MEM_BASE
Definition common_error_code_rom.h:148
@ OAL_ERR_CODE_ALG_AR_BASE
Definition common_error_code_rom.h:538
@ OAL_ERR_INIT_HAL_CB
Definition common_error_code_rom.h:98
@ OAL_ERR_CODE_KEEPALIVE_PTR_NULL
Definition common_error_code_rom.h:306
@ OAL_ERR_CODE_TAG3_PAYLOAD_ERR
Definition common_error_code_rom.h:461
@ OAL_ERR_CODE_PROXY_ARP_REPLY_MCAST_COMP
Definition common_error_code_rom.h:321
@ OAL_ERR_CODE_SECURITY_LIST_FULL
Definition common_error_code_rom.h:192
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_MI_ERR
Definition common_error_code_rom.h:378
@ OAL_ERR_DMAC_INIT_CB
Definition common_error_code_rom.h:91
@ OAL_ERR_CODE_ROAM_NO_RESPONSE
Definition common_error_code_rom.h:503
@ OAL_ERR_CODE_TAG3_BASE
Definition common_error_code_rom.h:458
@ OAL_ERR_CODE_OAM_EVT_FR_LEN_INVALID
Definition common_error_code_rom.h:291
@ OAL_ERR_CODE_PROXY_ARP_BASE
Definition common_error_code_rom.h:312
@ OAL_ERR_CODE_THREAD_DEADLOCK
Definition common_error_code_rom.h:47
@ OAL_ERR_CODE_OPEN_FILE_FAIL
Definition common_error_code_rom.h:106
@ OAL_ERR_CODE_SECURITY_USER_INVAILD
Definition common_error_code_rom.h:181
@ OAL_ERR_CODE_NFC_RX_CRC_ERR
Definition common_error_code_rom.h:392
@ OAL_ERR_CODE_NFC_LSTNA_FALLING_FALL_ERR
Definition common_error_code_rom.h:396
@ OAL_ERR_CODE_MSG_BASE
Definition common_error_code_rom.h:70
@ OAL_ERR_CODE_HMAC_SECURITY_RESETIME_INVALID
Definition common_error_code_rom.h:218
@ OAL_ERR_CODE_RESET_INPROGRESS
Definition common_error_code_rom.h:40
@ OAL_ERR_CODE_OAL_MEM_DOG_TAG
Definition common_error_code_rom.h:274
@ OAL_ERR_CODE_DFS_CHAN_BLOCK_DUE_TO_RADAR
Definition common_error_code_rom.h:527
@ OAL_ERR_CODE_SWP_CBB_INT_REGISTER_FAIL
Definition common_error_code_rom.h:353
@ OAL_ERR_CODE_PMF_IGTK_NOT_EXIST
Definition common_error_code_rom.h:244
@ OAL_ERR_CODE_AR_INPUT_PARAM_INVALID
Definition common_error_code_rom.h:552
@ OAL_ERR_CODE_OAL_BUTT
Definition common_error_code_rom.h:281
@ OAL_ERR_CODE_RF_DISCOVERY_MODE_ERR
Definition common_error_code_rom.h:466
@ OAL_ERR_CODE_HMAC_SECURITY_LIST_FULL
Definition common_error_code_rom.h:216
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_SENS_RES_ERR
Definition common_error_code_rom.h:382
@ OAL_ERR_CODE_MSG_NOT_CMPTBL_WITH_STATE
Definition common_error_code_rom.h:73
@ OAL_ERR_CODE_SECURITY_KEY_ID
Definition common_error_code_rom.h:176
@ OAL_ERR_CODE_HMAC_SECURITY_BASE
Definition common_error_code_rom.h:197
@ OAL_ERR_CODE_BUTT
Definition common_error_code_rom.h:572
@ OAL_ERR_CODE_CBB_INT_REGISTER_FAIL
Definition common_error_code_rom.h:399
@ OAL_ERR_CODE_TYPE_F_SENSF_REQ_OPCODE_ERR
Definition common_error_code_rom.h:455
@ OAL_ERR_CODE_PMF_BUTT
Definition common_error_code_rom.h:252
@ OAL_ERR_CODE_SHDLC_BASE
Definition common_error_code_rom.h:485
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_CL_ERR
Definition common_error_code_rom.h:384
@ OAL_ERR_CODE_TYPE_B_CR_AFI_ERR
Definition common_error_code_rom.h:441
@ OAL_ERR_CODE_HMAC_SECURITY_AUTH_TYPE
Definition common_error_code_rom.h:207
@ OAL_ERR_CODE_FILE_BUTT
Definition common_error_code_rom.h:111
@ OAL_SUCC
Definition common_error_code_rom.h:18
@ OAL_ERR_MAIN_INIT_BUTT
Definition common_error_code_rom.h:100
@ OAL_ERR_CODE_SECURITY_CAP_PHY
Definition common_error_code_rom.h:187
@ OAL_ERR_CODE_OAL_MEM_EXCEED_SUBPOOL_CNT
Definition common_error_code_rom.h:273
@ OAL_ERR_CODE_NFC_CRPLL_UNLOCK_FLAG_ERR
Definition common_error_code_rom.h:395
@ OAL_ERR_RECV_FRAME_TYPE_DIF_FSM
Definition common_error_code_rom.h:486
@ OAL_ERR_CODE_TAG4A_RATS_DID_ERR
Definition common_error_code_rom.h:451
@ OAL_ERR_MAIN_INIT_DMAC
Definition common_error_code_rom.h:89
@ OAL_ERR_CODE_SECURITY_PORT_INVALID
Definition common_error_code_rom.h:188
@ OAL_ERR_CODE_QUEUE_BASE
Definition common_error_code_rom.h:347
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_PNI_ERR
Definition common_error_code_rom.h:380
@ OAL_ERR_CODE_PROXY_ARP_FINDUSR_ERR_COMP
Definition common_error_code_rom.h:341
@ OAL_ERR_CODE_PROXY_ARP_REPLY2ETH_COMP
Definition common_error_code_rom.h:317
@ OAL_ERR_CODE_ISO_DEP_UNRECOVERABLE_EXCEPTIOM
Definition common_error_code_rom.h:434
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_NAD_ERR
Definition common_error_code_rom.h:379
@ OAL_ERR_CODE_PMF_SA_QUERY_REQ_SEND_FAIL
Definition common_error_code_rom.h:234
@ OAL_ERR_CODE_FOBID_CLOSE_DEVICE
Definition common_error_code_rom.h:27
@ OAL_ERR_CODE_LIST_NOT_EMPTY_ERROR
Definition common_error_code_rom.h:46
@ OAL_ERR_INIT_HAL_STATE
Definition common_error_code_rom.h:96
@ OAL_ERR_CODE_CFG80211_ENOBUFS
Definition common_error_code_rom.h:259
@ OAL_ERR_CODE_NCI_UNKNOWN_MSG
Definition common_error_code_rom.h:475
@ OAL_ERR_CODE_HMAC_SECURITY_BUFF_LEN
Definition common_error_code_rom.h:203
@ OAL_CONTINUE
Definition common_error_code_rom.h:19
@ OAL_ERR_CODE_PROXY_ND_INVLD_SKB2_INCOMP
Definition common_error_code_rom.h:320
@ OAL_ERR_MEM_SUB_CNT
Definition common_error_code_rom.h:150
@ OAL_ERR_CODE_NFC_DEP_FRAME_TYPE_ERR
Definition common_error_code_rom.h:371
@ OAL_ERR_CODE_TYPE_F_SENSF_RES_WITH_RD_ERR
Definition common_error_code_rom.h:456
@ OAL_ERR_CODE_CONFIG_BW_EXCEED
Definition common_error_code_rom.h:62
@ OAL_ERR_CODE_PTR_NULL
Definition common_error_code_rom.h:34
@ OAL_ERR_CODE_SECURITY_AGING_INVALID
Definition common_error_code_rom.h:191
@ OAL_ERR_CODE_TAG4B_TYPE_B_DID_ERR
Definition common_error_code_rom.h:413
@ OAL_ERR_CODE_HMAC_SECURITY_CAP_MFP
Definition common_error_code_rom.h:210
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_BCC_ERR
Definition common_error_code_rom.h:387
@ OAL_ERR_CODE_ADD_MULTI_USER_INDX_UNSYNC
Definition common_error_code_rom.h:64
@ OAL_ERR_CODE_HMAC_SECURITY_BUTT
Definition common_error_code_rom.h:219
@ OAL_ERR_CODE_READ_FILE_FAIL
Definition common_error_code_rom.h:109
@ OAL_ERR_CODE_NCI_PACKET_INVALID
Definition common_error_code_rom.h:482
@ OAL_ERR_CODE_PMF_NO_PROTECTED
Definition common_error_code_rom.h:250
@ OAL_ERR_CODE_TYPE_A_BASE
Definition common_error_code_rom.h:358
@ OAL_ERR_CODE_SWP_CBB_LENGTH_INVALID
Definition common_error_code_rom.h:354
@ OAL_ERR_MAIN_INIT_MOD
Definition common_error_code_rom.h:99
@ OAL_ERR_CODE_RF_DISCOVERY_TECH_TYPE_ERR
Definition common_error_code_rom.h:465
@ OAL_ERR_CODE_AR_PROBE_PHASE_ERR
Definition common_error_code_rom.h:543
@ OAL_ERR_CODE_SYS_BASE
Definition common_error_code_rom.h:33
@ OAL_ERR_CODE_SECURITY_CHIPER_TYPE
Definition common_error_code_rom.h:177
@ OAL_ERR_CODE_TAG3_CUP_CMD_OPCODE_ERR
Definition common_error_code_rom.h:459
@ OAL_ERR_MAIN_INIT_MEM
Definition common_error_code_rom.h:86
@ OAL_ERR_CODE_PROXY_ND_NS_REPLY_NA2BSS_COMP
Definition common_error_code_rom.h:332
@ OAL_ERR_CODE_OAL_MEM_GET_CFG_TBL_FAIL
Definition common_error_code_rom.h:271
@ OAL_ERR_CODE_ROAM_NO_VALID_BSS
Definition common_error_code_rom.h:496
@ OAL_ERR_CODE_ISO_DEP_NAD_ERR
Definition common_error_code_rom.h:425
@ OAL_ERR_CODE_AR_GROUP_ID_CONFLICT
Definition common_error_code_rom.h:553
@ OAL_ERR_CODE_CFG80211_SKB_MEM_FAIL
Definition common_error_code_rom.h:256
@ OAL_ERR_CODE_USER_EXTEND_BASE
Definition common_error_code_rom.h:510
@ OAL_ERR_CODE_SWP_CBB_BASE
Definition common_error_code_rom.h:351
@ OAL_ERR_CODE_ISO_DEP_BLOCK_TYPE_ERR
Definition common_error_code_rom.h:423
@ OAL_ERR_CODE_TYPE_F_SENSF_RES_OPCODE_ERR
Definition common_error_code_rom.h:454
@ OAL_ERR_CODE_CUR_SLOT_NUM_ERR
Definition common_error_code_rom.h:438
@ OAL_ERR_CODE_PROXY_ND_NA_UCAST_NOT_LLA_INCOMP
Definition common_error_code_rom.h:335
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_DSI_ERR
Definition common_error_code_rom.h:375
@ OAL_ERR_CODE_PROXY_ND_NS_REPLY_NA2ETH_COMP
Definition common_error_code_rom.h:343
@ OAL_ERR_CODE_PMF_NO_PROTECTED_ERROR
Definition common_error_code_rom.h:248
@ OAL_ERR_CODE_ISO_DEP_WTXM_ERR
Definition common_error_code_rom.h:432
@ OAL_ERR_MAIN_INIT_ALG
Definition common_error_code_rom.h:88
@ OAL_ERR_CODE_AR_RECODE_DEQUEUE_FULL
Definition common_error_code_rom.h:556
@ OAL_ERR_MEM_LEN_ZERO
Definition common_error_code_rom.h:153
@ OAL_ERR_CODE_NFC_DEP_TYPE_A_GEN_INFO_FLAG_ERR
Definition common_error_code_rom.h:374
@ OAL_ERR_CODE_NFC_CBB_BASE
Definition common_error_code_rom.h:391
@ OAL_ERR_CODE_HMAC_AMSDU_BUTT
Definition common_error_code_rom.h:169
@ OAL_ERR_CODE_NFC_DEP_LISTEN_BASE
Definition common_error_code_rom.h:364
@ OAL_ERR_CODE_SECR_KEY_ID
Definition common_error_code_rom.h:141
@ OAL_ERR_CODE_HCC_BASE
Definition common_error_code_rom.h:116
@ OAL_ERR_CODE_OAL_MEM_SKB_SUBPOOL_ID_ERR
Definition common_error_code_rom.h:270
@ OAL_ERR_CODE_ALLOC_MEM_FAIL
Definition common_error_code_rom.h:37
@ OAL_ERR_CODE_HMAC_SECURITY_BUFF_NUM
Definition common_error_code_rom.h:202
@ OAL_ERR_CODE_OAM_DSCR_LEN_INVALID
Definition common_error_code_rom.h:296
@ OAL_ERR_CODE_ARRAY_OVERFLOW
Definition common_error_code_rom.h:35
@ OAL_ERR_CODE_PROXY_ND_NA_INVLD_COMP
Definition common_error_code_rom.h:333
@ OAL_ERR_DMAC_INIT_BOARD
Definition common_error_code_rom.h:94
@ OAL_ERR_CODE_CONFIG_EXCEED_SPEC
Definition common_error_code_rom.h:56
@ OAL_ERR_CODE_PROXY_ARP_BUTT
Definition common_error_code_rom.h:344
@ OAL_ERR_MAIN_INIT_HAL
Definition common_error_code_rom.h:95
@ OAL_ERR_CODE_PROXY_ND_NOT_ICMPV6_INCOMP
Definition common_error_code_rom.h:339
@ OAL_ERR_CODE_DFS_BASE
Definition common_error_code_rom.h:526
@ OAL_ERR_CODE_WAPI_MIC_CALC_FAIL
Definition common_error_code_rom.h:225
@ OAL_ERR_CODE_AR_MEMBLK_GET_FAIL
Definition common_error_code_rom.h:555
@ OAL_ERR_CODE_PMF_BASE
Definition common_error_code_rom.h:232
@ OAL_ERR_CODE_VAP_INDX_UNSYNC
Definition common_error_code_rom.h:59
@ OAL_ERR_CODE_ROAM_HANDSHAKE_FAIL
Definition common_error_code_rom.h:502
@ OAL_ERR_CODE_HMAC_SECURITY_MODE_INVALID
Definition common_error_code_rom.h:215
@ OAL_ERR_CODE_NFC_RX_BUFF_ERR
Definition common_error_code_rom.h:397
@ OAL_ERR_CODE_FILE_BASE
Definition common_error_code_rom.h:105
@ OAL_ERR_CODE_AR_PROTOCOL_ERR
Definition common_error_code_rom.h:549
@ OAL_ERR_CODE_ALREADY_CLOSE
Definition common_error_code_rom.h:26
@ OAL_ERR_CODE_AR_RATE_INFO_ROOM_NOT_ENOUGH
Definition common_error_code_rom.h:545
@ OAL_ERR_CODE_AR_INVALID_USER_ID
Definition common_error_code_rom.h:551
@ OAL_ERR_CODE_STR_NULL
Definition common_error_code_rom.h:124
@ OAL_ERR_CODE_AR_PROBE_STATE_ERR
Definition common_error_code_rom.h:554
@ OAL_ERR_CODE_UID_ERR
Definition common_error_code_rom.h:359
@ OAL_ERR_CODE_SECURITY_CAP_MFP
Definition common_error_code_rom.h:186
@ OAL_ERR_CODE_PMF_VAP_ACTIVE_DOWN
Definition common_error_code_rom.h:243
@ OAL_ERR_CODE_SECURITY_MAC_INVALID
Definition common_error_code_rom.h:189
@ OAL_ERR_CODE_NFC_RX_LSTN_RATE_ERR
Definition common_error_code_rom.h:401
@ OAL_ERR_CODE_USER_RES_CNT_ZERO
Definition common_error_code_rom.h:61
unsigned int osal_u32
Definition osal_types.h:13