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