summaryrefslogtreecommitdiff
path: root/zaptel.c
diff options
context:
space:
mode:
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;