Lines Matching refs:qel
286 static void enQ(struct xmitQel *qel) in enQ() argument
289 qel->next = NULL; in enQ()
293 xmQtl->next = qel; in enQ()
295 xmQhd = qel; in enQ()
297 xmQtl = qel; in enQ()
301 printk("enqueued a 0x%02x command\n",qel->cbuf[0]); in enQ()
308 struct xmitQel *qel=NULL; in deQ() local
312 qel = xmQhd; in deQ()
313 xmQhd = qel->next; in deQ()
318 if ((debug & DEBUG_LOWER) && qel) { in deQ()
321 n = qel->cbuflen; in deQ()
323 for(i=0;i<n;i++) printk("%02x ",qel->cbuf[i]); in deQ()
327 return qel; in deQ()