dahdi: Remove what appears to be stale debug code in dahdi_chan_read/write.

If someone was still using this...feel free to add it back in with a
comment about why it needs to be in the mainline.  It looked better to
remove it than edit it to make sure it worked.

Review: https://reviewboard.asterisk.org/r/905/

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

git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9370 a0bf4364-ded3-4de4-8d8a-66a801d63aff
This commit is contained in:
Shaun Ruffell
2010-09-20 20:33:39 +00:00
parent 5c1857d95e
commit 83dcb53e6d

View File

@@ -2137,23 +2137,6 @@ static ssize_t dahdi_chan_read(struct file *file, char __user *usrbuf,
return rv;
}
amnt = count;
/* added */
#if 0
if ((unit == 24) || (unit == 48) || (unit == 16) || (unit == 47)) {
int myamnt = amnt;
int x;
if (amnt > chan->readn[res])
myamnt = chan->readn[res];
module_printk(KERN_NOTICE, "dahdi_chan_read(unit: %d, inwritebuf: %d, outwritebuf: %d amnt: %d\n",
unit, chan->inwritebuf, chan->outwritebuf, myamnt);
module_printk(KERN_DEBUG, "\t(");
for (x = 0; x < myamnt; x++)
printk((x ? " %02x" : "%02x"), (unsigned char)usrbuf[x]);
printk(")\n");
}
#endif
/* end addition */
if (chan->flags & DAHDI_FLAG_LINEAR) {
if (amnt > (chan->readn[res] << 1))
amnt = chan->readn[res] << 1;
@@ -2295,15 +2278,6 @@ static ssize_t dahdi_chan_write(struct file *file, const char __user *usrbuf,
module_printk(KERN_NOTICE, "dahdi_chan_write(unit: %d, res: %d, outwritebuf: %d amnt: %d\n",
unit, res, chan->outwritebuf, amnt);
#endif
#if 0
if ((unit == 24) || (unit == 48) || (unit == 16) || (unit == 47)) {
int x;
module_printk(KERN_NOTICE, "dahdi_chan_write/in(unit: %d, res: %d, outwritebuf: %d amnt: %d, txdisable: %d)\n",
unit, res, chan->outwritebuf, amnt, chan->txdisable);
module_printk(KERN_DEBUG, "\t("); for (x = 0; x < amnt; x++) module_printk(KERN_DEBUG, (x ? " %02x" : "%02x"), (unsigned char)usrbuf[x]);
module_printk(KERN_DEBUG, ")\n");
}
#endif
if (amnt) {
if (chan->flags & DAHDI_FLAG_LINEAR) {