summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/oss/sound_timer.c2
-rw-r--r--sound/oss/sys_timer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/sound_timer.c b/sound/oss/sound_timer.c
index 8021c85f076d..3a444a6f10eb 100644
--- a/sound/oss/sound_timer.c
+++ b/sound/oss/sound_timer.c
@@ -17,7 +17,7 @@
17#include "sound_config.h" 17#include "sound_config.h"
18 18
19static volatile int initialized, opened, tmr_running; 19static volatile int initialized, opened, tmr_running;
20static volatile time_t tmr_offs, tmr_ctr; 20static volatile unsigned int tmr_offs, tmr_ctr;
21static volatile unsigned long ticks_offs; 21static volatile unsigned long ticks_offs;
22static volatile int curr_tempo, curr_timebase; 22static volatile int curr_tempo, curr_timebase;
23static volatile unsigned long curr_ticks; 23static volatile unsigned long curr_ticks;
diff --git a/sound/oss/sys_timer.c b/sound/oss/sys_timer.c
index 2226dda0eff0..d17019d25b99 100644
--- a/sound/oss/sys_timer.c
+++ b/sound/oss/sys_timer.c
@@ -19,7 +19,7 @@
19#include "sound_config.h" 19#include "sound_config.h"
20 20
21static volatile int opened, tmr_running; 21static volatile int opened, tmr_running;
22static volatile time_t tmr_offs, tmr_ctr; 22static volatile unsigned int tmr_offs, tmr_ctr;
23static volatile unsigned long ticks_offs; 23static volatile unsigned long ticks_offs;
24static volatile int curr_tempo, curr_timebase; 24static volatile int curr_tempo, curr_timebase;
25static volatile unsigned long curr_ticks; 25static volatile unsigned long curr_ticks;