Кажется вот так:Index: czaptel.c===================================================================RCS file: /cronyx/adapters/.cvsdir/Linux/clinux-base/czaptel.c,vretrieving revision 1.2diff -u -r1.2 czaptel.c--- czaptel.c 24 Apr 2005 12:14:29 -0000 1.2+++ czaptel.c 27 May 2005 12:55:33 -0000@@ -211,14 +211,16 @@ for (buf = skb->data; buf < skb->data + 32*ZT_CHUNKSIZE*4; buf += 32*ZT_CHUNKSIZE) { zt_transmit(&p->span); for (y=0;y<ZT_CHUNKSIZE;y++) {- if (p->cas_rbsbits_tx[0] != 0x0b) {+ if (p->cas && p->cas_rbsbits_tx[0] != 0x0b) { printk (KERN_ERR "Ups, wrong CAS transmit table "); } for (x=0;x<p->span.channels;x++) { buf [y*32+x+1] = p->chans[x].writechunk[y]; }- buf [y*32+16] = p->cas_rbsbits_tx[p->cas_tx_index];- p->cas_tx_index = (p->cas_tx_index + 1) & 0x0f;+ if (p->cas) {+ buf [y*32+16] = p->cas_rbsbits_tx[p->cas_tx_index];+ p->cas_tx_index = (p->cas_tx_index + 1) & 0x0f;+ } } } }