Lines Matching refs:qel
284 static void enQ(struct xmitQel *qel) in enQ() argument
287 qel->next = NULL; in enQ()
291 xmQtl->next = qel; in enQ()
293 xmQhd = qel; in enQ()
295 xmQtl = qel; in enQ()
299 printk("enqueued a 0x%02x command\n",qel->cbuf[0]); in enQ()
306 struct xmitQel *qel=NULL; in deQ() local
310 qel = xmQhd; in deQ()
311 xmQhd = qel->next; in deQ()
316 if ((debug & DEBUG_LOWER) && qel) { in deQ()
319 n = qel->cbuflen; in deQ()
321 for(i=0;i<n;i++) printk("%02x ",qel->cbuf[i]); in deQ()
325 return qel; in deQ()