summaryrefslogtreecommitdiff
path: root/drivers/dahdi/digits.h
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2008-05-21 16:44:40 +0000
committerKevin P. Fleming <kpfleming@digium.com>2008-05-21 16:44:40 +0000
commit66d8715a0fbf6eae202c27853ba616bcf754d0c7 (patch)
tree335a9397e48be117e3396f0d317aa3570ec502b7 /drivers/dahdi/digits.h
parent0a64510aaa673ebafc3fdf4143f6e8e24252d9ef (diff)
replace ZT_ with DAHDI_, zt_ with dahdi_
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4320 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/digits.h')
-rw-r--r--drivers/dahdi/digits.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/dahdi/digits.h b/drivers/dahdi/digits.h
index 9f4ea9b..160fdc7 100644
--- a/drivers/dahdi/digits.h
+++ b/drivers/dahdi/digits.h
@@ -20,28 +20,28 @@
#ifndef _DIGITS_H
#define _DIGITS_H
-#define DEFAULT_DTMF_LENGTH 100 * ZT_CHUNKSIZE
-#define DEFAULT_MFR1_LENGTH 68 * ZT_CHUNKSIZE
-#define DEFAULT_MFR2_LENGTH 100 * ZT_CHUNKSIZE
-#define PAUSE_LENGTH 500 * ZT_CHUNKSIZE
+#define DEFAULT_DTMF_LENGTH 100 * DAHDI_CHUNKSIZE
+#define DEFAULT_MFR1_LENGTH 68 * DAHDI_CHUNKSIZE
+#define DEFAULT_MFR2_LENGTH 100 * DAHDI_CHUNKSIZE
+#define PAUSE_LENGTH 500 * DAHDI_CHUNKSIZE
/* At the end of silence, the tone stops */
-static struct zt_tone dtmf_silence = {
+static struct dahdi_tone dtmf_silence = {
.tonesamples = DEFAULT_DTMF_LENGTH,
};
/* At the end of silence, the tone stops */
-static struct zt_tone mfr1_silence = {
+static struct dahdi_tone mfr1_silence = {
.tonesamples = DEFAULT_MFR1_LENGTH,
};
/* At the end of silence, the tone stops */
-static struct zt_tone mfr2_silence = {
+static struct dahdi_tone mfr2_silence = {
.tonesamples = DEFAULT_MFR2_LENGTH,
};
/* A pause in the dialing */
-static struct zt_tone tone_pause = {
+static struct dahdi_tone tone_pause = {
.tonesamples = PAUSE_LENGTH,
};