qcacmn: Address compilation issues for WIN new fw headers

Address compilation issues for WIN with new Lithium Firmware headers.
Also removed dependency on htt.h from header files, which may need to
add explicit dependency on htt.h in .c files.

Change-Id: Ia5027963837e645bc3f81a3db98c2ea06789aea8
CRs-Fixed: 1061096
This commit is contained in:
Pratik Gandhi
2016-08-23 19:47:09 +05:30
committed by qcabuildsw
parent 483484f03a
commit 424c62e877
5 changed files with 13 additions and 9 deletions

View File

@@ -148,13 +148,13 @@ ol_txrx_set_drop_unenc(
* This will be used to populate the HTT desc packet type field during Tx
*
* @param vdev - the data virtual device object
* @param val - the Tx encap type
* @param val - the Tx encap type (htt_pkt_type)
* @return - void
*/
void
ol_txrx_set_tx_encap_type(
ol_txrx_vdev_handle vdev,
enum htt_pkt_type val);
uint32_t val);
/**
* @brief set the Rx decapsulation type of the VDEV
@@ -163,21 +163,21 @@ ol_txrx_set_tx_encap_type(
* decap all Rx packets into, for all peers under the VDEV.
*
* @param vdev - the data virtual device object
* @param val - the Rx decap mode
* @param val - the Rx decap mode (htt_pkt_type)
* @return - void
*/
void
ol_txrx_set_vdev_rx_decap_type(
ol_txrx_vdev_handle vdev,
enum htt_pkt_type val);
uint32_t val);
/**
* @brief get the Rx decapsulation type of the VDEV
*
* @param vdev - the data virtual device object
* @return - the Rx decap type
* @return - the Rx decap type (htt_pkt_type)
*/
enum htt_pkt_type
uint32_t
ol_txrx_get_vdev_rx_decap_type(ol_txrx_vdev_handle vdev);
/* Is this similar to ol_txrx_peer_state_update() in MCL */