qcacld-3.0: Remove tx_action_cnf_event member in hdd_adapter

The tx_action_cnf_event member in the hdd_adapter structure has
no references in the driver so remove this obsolete variable.
The code that previously used this variable was removed by Change-Id:
Idaaacac4fdaf1b964432c33c10b1c86f8a591c2d

Change-Id: Idad017aa5568a3f2e49849522443dd2483562a66
CRs-Fixed: 3213565
This commit is contained in:
Vinod Kumar Pirla
2022-06-01 22:56:39 +05:30
committed by Madan Koyyalamudi
parent 31b8ef667d
commit 225716a360
2 changed files with 0 additions and 4 deletions

View File

@@ -1378,9 +1378,6 @@ struct hdd_adapter {
/* completion variable for Linkup Event */ /* completion variable for Linkup Event */
struct completion linkup_event_var; struct completion linkup_event_var;
/* Completion variable for action frame */
struct completion tx_action_cnf_event;
struct completion sta_authorized_event; struct completion sta_authorized_event;
/* Track whether the linkup handling is needed */ /* Track whether the linkup handling is needed */

View File

@@ -7591,7 +7591,6 @@ static void hdd_init_completion(struct hdd_adapter *adapter)
init_completion(&adapter->disconnect_comp_var); init_completion(&adapter->disconnect_comp_var);
init_completion(&adapter->linkup_event_var); init_completion(&adapter->linkup_event_var);
init_completion(&adapter->sta_authorized_event); init_completion(&adapter->sta_authorized_event);
init_completion(&adapter->tx_action_cnf_event);
init_completion(&adapter->lfr_fw_status.disable_lfr_event); init_completion(&adapter->lfr_fw_status.disable_lfr_event);
} }