Forráskód Böngészése

qcacld-3.0: Send TxBF in NAN case

Currently, the code is not sending the Tx beamforming capability to FW
in the case of NAN. Add this call to support beamforming in NAN mode.

Change-Id: I32af660724cfaecfe59da153fea9f98d24b0d4cb
CRs-fixed: 2889614
Lincoln Tran 4 éve
szülő
commit
88bbf740c9
1 módosított fájl, 3 hozzáadás és 1 törlés
  1. 3 1
      core/wma/src/wma_nan_datapath.c

+ 3 - 1
core/wma/src/wma_nan_datapath.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -95,6 +95,8 @@ void wma_add_sta_ndi_mode(tp_wma_handle wma, tpAddStaParams add_sta)
 		goto send_rsp;
 	}
 
+	wmi_unified_send_txbf(wma, add_sta);
+
 	wma_debug("Moving peer "QDF_MAC_ADDR_FMT" to state %d",
 		  QDF_MAC_ADDR_REF(add_sta->staMac), state);
 	cdp_peer_state_update(soc, add_sta->staMac, state);