1 /*
2 * Exported symbols for sequencer driver.
3 * __NO_VERSION__ because this is still part of sound.o.
4 */
5
6 #define __NO_VERSION__
7 #include <linux/module.h>
8
9 char sequencer_syms_symbol;
10
11 #include "sound_config.h"
12 #include "sound_calls.h"
13
14 EXPORT_SYMBOL(note_to_freq);
15 EXPORT_SYMBOL(compute_finetune);
16 EXPORT_SYMBOL(seq_copy_to_input);
17 EXPORT_SYMBOL(seq_input_event);
18 EXPORT_SYMBOL(sequencer_init);
19 EXPORT_SYMBOL(sequencer_timer);
20
21 EXPORT_SYMBOL(sound_timer_init);
22 EXPORT_SYMBOL(sound_timer_interrupt);
23 EXPORT_SYMBOL(sound_timer_syncinterval);
24 EXPORT_SYMBOL(reprogram_timer);
25
26 /* Tuning */
27
28 #define _SEQUENCER_C_
29 #include "tuning.h"
30
31 EXPORT_SYMBOL(cent_tuning);
32 EXPORT_SYMBOL(semitone_tuning);
33
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.