Home
last modified time | relevance | path

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

/linux-2.6.39/drivers/staging/ath6kl/include/
Dhtc_packet.h148 #define INIT_HTC_PACKET_QUEUE(pQ) \ argument
150 DL_LIST_INIT(&(pQ)->QueueHead); \
151 (pQ)->Depth = 0; \
155 #define HTC_PACKET_ENQUEUE(pQ,p) \ argument
156 { DL_ListInsertTail(&(pQ)->QueueHead,&(p)->ListLink); \
157 (pQ)->Depth++; \
161 #define HTC_PACKET_ENQUEUE_TO_HEAD(pQ,p) \ argument
162 { DL_ListInsertHead(&(pQ)->QueueHead,&(p)->ListLink); \
163 (pQ)->Depth++; \
166 #define HTC_QUEUE_EMPTY(pQ) ((pQ)->Depth == 0) argument
[all …]