浏览代码

qcacmn: Add ldpc_rx_enabled to vdev start parameters

Add a field ldpc_rx_enabled to vdev start parameters so that
this information can be propagated from the upper layers to
WMI and further to firmware.

Change-Id: I25fd148f77d86eb646a0e40fef6ac99c4fbcdf22
CRs-Fixed: 2023893
Varun Reddy Yeturu 8 年之前
父节点
当前提交
5fe013da03
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      wmi_unified_param.h

+ 2 - 0
wmi_unified_param.h

@@ -642,6 +642,7 @@ struct mac_ssid {
  * @dot11_mode: Phy mode (VHT20/VHT80...)
  * @disable_hw_ack: Disable hw ack if chan is dfs channel for cac
  * @channel_param: Channel params required by target.
+ * @ldpc_rx_enabled: Enable/Disable LDPC RX for this vdev
  */
 struct vdev_start_params {
 	uint8_t vdev_id;
@@ -675,6 +676,7 @@ struct vdev_start_params {
 	uint8_t disable_hw_ack;
 	struct channel_param channel;
 #endif
+	bool ldpc_rx_enabled;
 };
 
 /**