dahdi: Remove '#if 1' in dahdi_transmit.

Most likely some stale debugging code that slipped in and is now gone.

Signed-off-by: Shaun Ruffell <sruffell@digium.com>

git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9350 a0bf4364-ded3-4de4-8d8a-66a801d63aff
This commit is contained in:
Shaun Ruffell
2010-09-20 18:54:55 +00:00
parent 5409b9d50c
commit 078b3b7bbc

View File

@@ -8209,7 +8209,6 @@ int dahdi_transmit(struct dahdi_span *span)
int x,y,z;
unsigned long flags;
#if 1
for (x=0;x<span->channels;x++) {
spin_lock_irqsave(&span->chans[x]->lock, flags);
if (span->chans[x]->flags & DAHDI_FLAG_NOSTDTXRX) {
@@ -8271,7 +8270,6 @@ int dahdi_transmit(struct dahdi_span *span)
wake_up_interruptible(&span->maintq);
}
}
#endif
return 0;
}