summaryrefslogtreecommitdiff
path: root/zaptel.c
diff options
context:
space:
mode:
authormarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2003-08-26 19:36:15 +0000
committermarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2003-08-26 19:36:15 +0000
commita6713c85dc21d91ec426a8ee731146bf7ef67caf (patch)
treedcf45b73bd85b0cfdc3b44572b2f96afb0047f4c /zaptel.c
parent75772ff6aba05af5cbd90198d63c5d129b8c8e9f (diff)
USeful printk
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@235 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'zaptel.c')
-rwxr-xr-xzaptel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zaptel.c b/zaptel.c
index 3fb9c6a..4fc7da6 100755
--- a/zaptel.c
+++ b/zaptel.c
@@ -4108,7 +4108,7 @@ static inline void __zt_process_getaudio_chunk(struct zt_chan *ss, unsigned char
for (x=0;x<ZT_CHUNKSIZE;x++) {
/* Check for echo cancel disabling tone */
if (echo_can_disable_detector_update(&ms->txecdis, getlin[x])) {
- printk("Disabled echo canceller because of tone (tx)\n");
+ printk("zaptel Disabled echo canceller because of tone (tx) on channel %d\n", ss->channo);
ms->echocancel = 0;
kfree(ms->ec);
ms->ec = NULL;
@@ -4797,7 +4797,7 @@ static inline void __zt_process_putaudio_chunk(struct zt_chan *ss, unsigned char
if (ms->ec) {
for (x=0;x<ZT_CHUNKSIZE;x++) {
if (echo_can_disable_detector_update(&ms->rxecdis, putlin[x])) {
- printk("Disabled echo canceller because of tone (rx)\n");
+ printk("zaptel Disabled echo canceller because of tone (rx) on channel %d\n", ss->channo);
ms->echocancel = 0;
kfree(ms->ec);
ms->ec = NULL;