Lines Matching refs:sup
331 #define SOFTMAC_EQ_PENDING(sup, mp) { \
332 if ((sup)->su_pending_head == NULL) { \
333 (sup)->su_pending_head = (sup)->su_pending_tail = (mp); \
335 (sup)->su_pending_tail->b_next = (mp); \
336 (sup)->su_pending_tail = (mp); \
340 #define SOFTMAC_DQ_PENDING(sup, mpp) { \
341 if ((sup)->su_pending_head == NULL) { \
344 *(mpp) = (sup)->su_pending_head; \
345 if (((sup)->su_pending_head = (*(mpp))->b_next) == NULL)\
346 (sup)->su_pending_tail = NULL; \