Searched refs:ctrl_flags (Results 1 – 3 of 3) sorted by relevance
65 #define IS_QOS_PKT(ctrl_flags) (ctrl_flags & TX_DATA_CTRL_FLAG_QOS_BIT) argument67 #define IS_4ADDR(ctrl_flags) (ctrl_flags & BIT(0)) argument68 #define IS_FIXED_DATA_RATE(ctrl_flags) (ctrl_flags & BIT(2)) argument69 #define IS_TODS(ctrl_flags) (ctrl_flags & BIT(3)) argument70 #define IS_FROMDS(ctrl_flags) (ctrl_flags & BIT(4)) argument71 #define IS_CFM_TO_HOST_SET(ctrl_flags) (ctrl_flags & BIT(5)) argument705 uint8_t ctrl_flags; member
2309 if ((!IS_PEER_DS_SUPPORT_ENABLED(feature_bit_map)) && !IS_FIXED_DATA_RATE(control->ctrl_flags)) { in encapsulate_tx_data_packet()2315 control->ctrl_flags &= ~TX_DATA_CTRL_FLAG_QOS_BIT; in encapsulate_tx_data_packet()2318 …if ((IS_QOS_PKT(control->ctrl_flags) && !IS_BCAST_MCAST_MAC(control->addr1[0])) && (control->prior… in encapsulate_tx_data_packet()2322 if (IS_4ADDR(control->ctrl_flags)) { in encapsulate_tx_data_packet()2331 if (IS_4ADDR(control->ctrl_flags)) { in encapsulate_tx_data_packet()2335 *frame_ctrl |= IS_TODS(control->ctrl_flags) ? FC_TO_DS : 0; in encapsulate_tx_data_packet()2336 *frame_ctrl |= IS_FROMDS(control->ctrl_flags) ? FC_FROM_DS : 0; in encapsulate_tx_data_packet()2345 seq_ctrl = (uint16_t)(get_seq_ctrl(IS_QOS_PKT(control->ctrl_flags)) << 4); in encapsulate_tx_data_packet()2350 if (IS_4ADDR(control->ctrl_flags)) { in encapsulate_tx_data_packet()2354 if (IS_QOS_PKT(control->ctrl_flags) && !IS_BCAST_MCAST_MAC(control->addr1[0])) { in encapsulate_tx_data_packet()[all …]
2442 if (IS_FIXED_DATA_RATE(control->ctrl_flags)) { in sl_wifi_send_transceiver_data()