aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/isdn/mISDN/dsp.h4
-rw-r--r--drivers/isdn/mISDN/dsp_cmx.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/drivers/isdn/mISDN/dsp.h b/drivers/isdn/mISDN/dsp.h
index afe4173ae007..fc1733a08845 100644
--- a/drivers/isdn/mISDN/dsp.h
+++ b/drivers/isdn/mISDN/dsp.h
@@ -76,7 +76,9 @@ extern u8 dsp_silence;
76#define MAX_SECONDS_JITTER_CHECK 5 76#define MAX_SECONDS_JITTER_CHECK 5
77 77
78extern struct timer_list dsp_spl_tl; 78extern struct timer_list dsp_spl_tl;
79extern u32 dsp_spl_jiffies; 79
80/* the datatype need to match jiffies datatype */
81extern unsigned long dsp_spl_jiffies;
80 82
81/* the structure of conferences: 83/* the structure of conferences:
82 * 84 *
diff --git a/drivers/isdn/mISDN/dsp_cmx.c b/drivers/isdn/mISDN/dsp_cmx.c
index 0c104b976835..a4f05c54c32b 100644
--- a/drivers/isdn/mISDN/dsp_cmx.c
+++ b/drivers/isdn/mISDN/dsp_cmx.c
@@ -1624,7 +1624,7 @@ send_packet:
1624 1624
1625static u32 jittercount; /* counter for jitter check */ 1625static u32 jittercount; /* counter for jitter check */
1626struct timer_list dsp_spl_tl; 1626struct timer_list dsp_spl_tl;
1627u32 dsp_spl_jiffies; /* calculate the next time to fire */ 1627unsigned long dsp_spl_jiffies; /* calculate the next time to fire */
1628static u16 dsp_count; /* last sample count */ 1628static u16 dsp_count; /* last sample count */
1629static int dsp_count_valid; /* if we have last sample count */ 1629static int dsp_count_valid; /* if we have last sample count */
1630 1630