浏览代码

qcacmn: Add REG_AFC_CMD_CLEAR_AFC_PAYLOAD to reg_afc_cmd_type

Add a new member REG_AFC_CMD_CLEAR_AFC_PAYLOAD to reg_afc_cmd_type

Change-Id: I5cd27c50731b28a08978af1b437d811f97def503
CRs-Fixed: 3499029
Hariharan Basuthkar 2 年之前
父节点
当前提交
6075201673
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      umac/regulatory/dispatcher/inc/reg_services_public_struct.h

+ 4 - 1
umac/regulatory/dispatcher/inc/reg_services_public_struct.h

@@ -2280,11 +2280,14 @@ enum HOST_REGDMN_MODE {
 /**
  * enum reg_afc_cmd_type - Type of AFC command sent to FW
  * @REG_AFC_CMD_SERV_RESP_READY: Server response is ready
- * @REG_AFC_CMD_RESET_AFC: Indicate the target to reset AFC
+ * @REG_AFC_CMD_RESET_AFC: Ask the target to send an AFC expiry event
+ * @REG_AFC_CMD_CLEAR_AFC_PAYLOAD: Ask the target to clear AFC Payload.
+ * The target in response sends REG_AFC_EXPIRY_EVENT_STOP_TX to host.
  */
 enum reg_afc_cmd_type {
 	REG_AFC_CMD_SERV_RESP_READY = 1,
 	REG_AFC_CMD_RESET_AFC = 2,
+	REG_AFC_CMD_CLEAR_AFC_PAYLOAD = 3,
 };
 
 /**