diff options
Diffstat (limited to 'sound/oss/sound_timer.c')
-rw-r--r-- | sound/oss/sound_timer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/oss/sound_timer.c b/sound/oss/sound_timer.c index 146bf85de958..f0f0c19fbff7 100644 --- a/sound/oss/sound_timer.c +++ b/sound/oss/sound_timer.c | |||
@@ -76,6 +76,7 @@ void sound_timer_syncinterval(unsigned int new_usecs) | |||
76 | tmr_ctr = 0; | 76 | tmr_ctr = 0; |
77 | usecs_per_tmr = new_usecs; | 77 | usecs_per_tmr = new_usecs; |
78 | } | 78 | } |
79 | EXPORT_SYMBOL(sound_timer_syncinterval); | ||
79 | 80 | ||
80 | static void tmr_reset(void) | 81 | static void tmr_reset(void) |
81 | { | 82 | { |
@@ -300,6 +301,7 @@ void sound_timer_interrupt(void) | |||
300 | } | 301 | } |
301 | spin_unlock_irqrestore(&lock,flags); | 302 | spin_unlock_irqrestore(&lock,flags); |
302 | } | 303 | } |
304 | EXPORT_SYMBOL(sound_timer_interrupt); | ||
303 | 305 | ||
304 | void sound_timer_init(struct sound_lowlev_timer *t, char *name) | 306 | void sound_timer_init(struct sound_lowlev_timer *t, char *name) |
305 | { | 307 | { |
@@ -321,3 +323,5 @@ void sound_timer_init(struct sound_lowlev_timer *t, char *name) | |||
321 | strcpy(sound_timer.info.name, name); | 323 | strcpy(sound_timer.info.name, name); |
322 | sound_timer_devs[n] = &sound_timer; | 324 | sound_timer_devs[n] = &sound_timer; |
323 | } | 325 | } |
326 | EXPORT_SYMBOL(sound_timer_init); | ||
327 | |||