qcacmn: Rename TX_DECAP_TYPE to TX_ENCAP_TYPE

The macros attributing the Tx encap type have been erroneously
named as TX decap.

Rename all occurences of TX_DECAP_* to TX_ENCAP_*. Also add support
to send WMI vdev params for tx_encap and rx_decap values.

CRs-Fixed: 2533710
Change-Id: Id6ef2955868010b264e76d2a416d22d30d2acedc
This commit is contained in:
Aditya Sathish
2019-10-01 17:44:44 +05:30
committed by nshrivas
parent 34a2ef695d
commit fbf9ece75d
4 changed files with 15 additions and 7 deletions

View File

@@ -198,7 +198,7 @@ struct vdev_mlme_proto {
* @type: vdev type
* @sub_type: vdev subtype
* @rx_decap_type: rx decap type
* @tx_decap_type: tx decap type
* @tx_encap_type: tx encap type
* @disable_hw_ack: disable ha ack flag
* @bssid: bssid
* @phy_mode: phy mode
@@ -223,7 +223,7 @@ struct vdev_mlme_mgmt_generic {
uint8_t type;
uint8_t subtype;
uint8_t rx_decap_type;
uint8_t tx_decap_type;
uint8_t tx_encap_type;
bool disable_hw_ack;
uint8_t bssid[QDF_MAC_ADDR_SIZE];
uint32_t phy_mode;