Lines Matching refs:params
268 u16 queue, const struct ieee80211_tx_queue_params *params) in mt7601u_conf_tx() argument
278 if (params->cw_min) in mt7601u_conf_tx()
279 cw_min = fls(params->cw_min); in mt7601u_conf_tx()
280 if (params->cw_max) in mt7601u_conf_tx()
281 cw_max = fls(params->cw_max); in mt7601u_conf_tx()
283 WARN_ON(params->txop > 0xff); in mt7601u_conf_tx()
284 WARN_ON(params->aifs > 0xf); in mt7601u_conf_tx()
288 val = MT76_SET(MT_EDCA_CFG_AIFSN, params->aifs) | in mt7601u_conf_tx()
298 val |= MT76_SET(MT_EDCA_CFG_TXOP, params->txop); in mt7601u_conf_tx()
303 val |= params->txop << MT_WMM_TXOP_SHIFT(hw_q); in mt7601u_conf_tx()
308 val |= params->aifs << MT_WMM_AIFSN_SHIFT(hw_q); in mt7601u_conf_tx()