Browse Source

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
Vinod Kumar Pirla 2 years ago
parent
commit
225716a360
2 changed files with 0 additions and 4 deletions
  1. 0 3
      core/hdd/inc/wlan_hdd_main.h
  2. 0 1
      core/hdd/src/wlan_hdd_main.c

+ 0 - 3
core/hdd/inc/wlan_hdd_main.h

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

+ 0 - 1
core/hdd/src/wlan_hdd_main.c

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