Lines Matching refs:_channel
1177 #define ef4_for_each_channel(_channel, _efx) \ argument
1178 for (_channel = (_efx)->channel[0]; \
1179 _channel; \
1180 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1181 (_efx)->channel[_channel->channel + 1] : NULL)
1184 #define ef4_for_each_channel_rev(_channel, _efx) \ argument
1185 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1186 _channel; \
1187 _channel = _channel->channel ? \
1188 (_efx)->channel[_channel->channel - 1] : NULL)
1219 #define ef4_for_each_channel_tx_queue(_tx_queue, _channel) \ argument
1220 if (!ef4_channel_has_tx_queues(_channel)) \
1223 for (_tx_queue = (_channel)->tx_queue; \
1224 _tx_queue < (_channel)->tx_queue + EF4_TXQ_TYPES && \
1229 #define ef4_for_each_possible_channel_tx_queue(_tx_queue, _channel) \ argument
1230 if (!ef4_channel_has_tx_queues(_channel)) \
1233 for (_tx_queue = (_channel)->tx_queue; \
1234 _tx_queue < (_channel)->tx_queue + EF4_TXQ_TYPES; \
1250 #define ef4_for_each_channel_rx_queue(_rx_queue, _channel) \ argument
1251 if (!ef4_channel_has_rx_queue(_channel)) \
1254 for (_rx_queue = &(_channel)->rx_queue; \