Searched refs:httsym (Results 1 – 2 of 2) sorted by relevance
/wlan-driver/fw-api/fw/ |
H A D | htt.h | 7208 #define HTT_RX_RING_SELECTION_CFG_PKT_TYPE_ENABLE_SET(word, httsym, value) \ argument 7210 HTT_CHECK_SET_VAL(httsym, value); \ 7211 (word) |= (value) << httsym##_S; \ 7213 #define HTT_RX_RING_SELECTION_CFG_PKT_TYPE_ENABLE_GET(word, httsym) \ argument 7214 (((word) & httsym##_M) >> httsym##_S) 7269 #define HTT_RX_RING_TLV_ENABLE_SET(word, httsym, enable) \ argument 7271 HTT_CHECK_SET_VAL(httsym, enable); \ 7272 (word) |= (enable) << httsym##_S; \ 7274 #define HTT_RX_RING_TLV_ENABLE_GET(word, httsym) \ argument 7275 (((word) & httsym##_M) >> httsym##_S) [all …]
|
H A D | htt_stats.h | 1860 #define HTT_PEER_DETAILS_SET(word, httsym, val) \ argument 1862 HTT_CHECK_SET_VAL(HTT_PEER_DETAILS_ ## httsym, val); \ 1863 (word) |= ((val) << HTT_PEER_DETAILS_ ## httsym ## _S); \ 1866 #define HTT_PEER_DETAILS_GET(word, httsym) \ argument 1867 (((word) & HTT_PEER_DETAILS_ ## httsym ## _M) >> HTT_PEER_DETAILS_ ## httsym ## _S)
|