qcacmn: Introduce intermediate EP voting access state

Introduce intermediate EP voting state during this transition state
access the votes only if direct writes are not possible.

Change-Id: Ib4522aef2209b4797100ca84e4e230a00e14b654
CRs-Fixed: 2954903
This commit is contained in:
Karthik Kantamneni
2021-05-26 10:16:01 +05:30
committed by Madan Koyyalamudi
parent 7b438a5835
commit bd49a69019
2 changed files with 10 additions and 3 deletions

View File

@@ -1081,10 +1081,12 @@ enum hif_ep_vote_type {
/**
* enum hif_ep_vote_access - hif ep vote access
* HIF_EP_VOTE_ACCESS_ENABLE: Enable ep voting
* HIF_EP_VOTE_INTERMEDIATE_ACCESS: allow during transistion
* HIF_EP_VOTE_ACCESS_DISABLE: disable ep voting
*/
enum hif_ep_vote_access {
HIF_EP_VOTE_ACCESS_ENABLE,
HIF_EP_VOTE_INTERMEDIATE_ACCESS,
HIF_EP_VOTE_ACCESS_DISABLE
};