qcacmn: Fix compilation issues and a minor issue

Removed qdf exports on functions defined in target specific
header files and defined those functions as static. Revert
changes on hal_rx_msdu_end_sa_idx_get and make
hal_rx_msdu_end_da_idx_get target specific

Change-Id: I2858b1d77118f0a26b54bf983bd342c7a4fe757d
This commit is contained in:
Balamurugan Mahalingam
2018-07-10 10:11:58 +05:30
committed by nshrivas
父節點 fe9c9c038c
當前提交 96d2d41c87
共有 14 個文件被更改,包括 57 次插入121 次删除

查看文件

@@ -56,8 +56,6 @@ void hal_tx_desc_set_dscp_tid_table_id_6390(void *desc,
DSCP_TID_TABLE_NUM, id);
}
qdf_export_symbol(hal_tx_desc_set_dscp_tid_table_id_6390);
#define DSCP_TID_TABLE_SIZE 24
#define NUM_WORDS_PER_DSCP_TID_TABLE (DSCP_TID_TABLE_SIZE / 4)
@@ -129,8 +127,6 @@ void hal_tx_set_dscp_tid_map_6390(void *hal_soc, uint8_t *map,
HAL_REG_WRITE(soc, cmn_reg_addr, regval);
}
qdf_export_symbol(hal_tx_set_dscp_tid_map_6390);
/**
* hal_tx_update_dscp_tid_6390() - Update the dscp tid map table as updated
* by the user
@@ -164,8 +160,6 @@ void hal_tx_update_dscp_tid_6390(void *hal_soc, uint8_t tid,
HAL_REG_WRITE(soc, addr, (regval & HWIO_TCL_R0_DSCP_TID_MAP_n_RMSK));
}
qdf_export_symbol(hal_tx_update_dscp_tid_6390);
/**
* hal_tx_desc_set_lmac_id - Set the lmac_id value
* @desc: Handle to Tx Descriptor
@@ -183,5 +177,4 @@ void hal_tx_desc_set_lmac_id_6390(void *desc,
HAL_SET_FLD(desc, TCL_DATA_CMD_4, LMAC_ID) |=
HAL_TX_SM(TCL_DATA_CMD_4, LMAC_ID, lmac_id);
}
qdf_export_symbol(hal_tx_desc_set_lmac_id_6390);