qcacmn: group hal tx and rx functions

keep hal tx and rx functions grouped as it will look clean
and avoid confusions while browsing code for others.

Change-Id: I519690d42cd077689bf7afe697908f43d7055da5
This commit is contained in:
Balamurugan Mahalingam
2018-09-25 12:13:34 +05:30
committed by nshrivas
parent 1b0579d9a6
commit fa1d9c7098
5 changed files with 10 additions and 10 deletions

View File

@@ -286,6 +286,8 @@ struct hal_hw_txrx_ops {
void (*hal_tx_desc_set_buf_addr)(void *desc, dma_addr_t paddr,
uint8_t pool_id, uint32_t desc_id, uint8_t type);
void (*hal_tx_comp_get_status)(void *desc, void *ts);
void (*hal_tx_desc_set_search_type)(void *desc, uint8_t search_type);
void (*hal_tx_desc_set_search_index)(void *desc, uint32_t search_index);
/* rx */
uint32_t (*hal_rx_msdu_start_nss_get)(uint8_t *);
@@ -307,8 +309,6 @@ struct hal_hw_txrx_ops {
uint32_t (*hal_rx_status_get_tlv_info)(void *rx_tlv_hdr,
void *ppdu_info,
void *hal);
void (*hal_tx_desc_set_search_type)(void *desc, uint8_t search_type);
void (*hal_tx_desc_set_search_index)(void *desc, uint32_t search_index);
};
/**