Home
last modified time | relevance | path

Searched refs:_queue (Results 1 – 3 of 3) sorted by relevance

/drivers/net/wireless/ath5k/
Dath5k.h135 #define AR5K_REG_READ_Q(ah, _reg, _queue) \ argument
136 (ath5k_hw_reg_read(ah, _reg) & (1 << _queue)) \
138 #define AR5K_REG_WRITE_Q(ah, _reg, _queue) \ argument
139 ath5k_hw_reg_write(ah, (1 << _queue), _reg)
141 #define AR5K_Q_ENABLE_BITS(_reg, _queue) do { \ argument
142 _reg |= 1 << _queue; \
145 #define AR5K_Q_DISABLE_BITS(_reg, _queue) do { \ argument
146 _reg &= ~(1 << _queue); \
/drivers/s390/crypto/
Dap_bus.h49 #define AP_MKQID(_device,_queue) (((_device) & 63) << 8 | ((_queue) & 15)) argument
/drivers/net/wireless/b43/
Dmain.c3153 static int b43_op_conf_tx(struct ieee80211_hw *hw, u16 _queue, in b43_op_conf_tx() argument
3158 unsigned int queue = (unsigned int)_queue; in b43_op_conf_tx()