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
diff --git a/wmi_unified_param.h b/wmi_unified_param.h
index bcaf61f..b7f4d8e 100644
--- a/wmi_unified_param.h
+++ b/wmi_unified_param.h
@@ -642,6 +642,7 @@
  * @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 @@
 	uint8_t disable_hw_ack;
 	struct channel_param channel;
 #endif
+	bool ldpc_rx_enabled;
 };
 
 /**