Lines Matching refs:_channel
1174 #define ef4_for_each_channel(_channel, _efx) \ argument
1175 for (_channel = (_efx)->channel[0]; \
1176 _channel; \
1177 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1178 (_efx)->channel[_channel->channel + 1] : NULL)
1181 #define ef4_for_each_channel_rev(_channel, _efx) \ argument
1182 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1183 _channel; \
1184 _channel = _channel->channel ? \
1185 (_efx)->channel[_channel->channel - 1] : NULL)
1216 #define ef4_for_each_channel_tx_queue(_tx_queue, _channel) \ argument
1217 if (!ef4_channel_has_tx_queues(_channel)) \
1220 for (_tx_queue = (_channel)->tx_queue; \
1221 _tx_queue < (_channel)->tx_queue + EF4_TXQ_TYPES && \
1226 #define ef4_for_each_possible_channel_tx_queue(_tx_queue, _channel) \ argument
1227 if (!ef4_channel_has_tx_queues(_channel)) \
1230 for (_tx_queue = (_channel)->tx_queue; \
1231 _tx_queue < (_channel)->tx_queue + EF4_TXQ_TYPES; \
1247 #define ef4_for_each_channel_rx_queue(_rx_queue, _channel) \ argument
1248 if (!ef4_channel_has_rx_queue(_channel)) \
1251 for (_rx_queue = &(_channel)->rx_queue; \