diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-10-04 05:17:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:32 -0400 |
commit | ece7f77b86e53bfe14699fdbcb0f03fdad0a01d6 (patch) | |
tree | 7ec7687dadcd6e45d75c8251257eaadae00f6273 /sound/oss/sound_syms.c | |
parent | d56b9b9c464a10ab1ee51a4c6190a2b57b8ef7a6 (diff) |
[PATCH] kill sound/oss/*_syms.c
Move all EXPORT_SYMBOL's from sound/oss/*_syms.c to the files with the
actual functions.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/oss/sound_syms.c')
-rw-r--r-- | sound/oss/sound_syms.c | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/sound/oss/sound_syms.c b/sound/oss/sound_syms.c deleted file mode 100644 index cb7c33fe5b05..000000000000 --- a/sound/oss/sound_syms.c +++ /dev/null | |||
@@ -1,50 +0,0 @@ | |||
1 | /* | ||
2 | * The sound core exports the following symbols to the rest of | ||
3 | * modulespace. | ||
4 | * | ||
5 | * (C) Copyright 1997 Alan Cox, Licensed under the GNU GPL | ||
6 | * | ||
7 | * Thu May 27 1999 Andrew J. Kroll <ag784@freenet..buffalo..edu> | ||
8 | * left out exported symbol... fixed | ||
9 | */ | ||
10 | |||
11 | #include <linux/module.h> | ||
12 | #include "sound_config.h" | ||
13 | #include "sound_calls.h" | ||
14 | |||
15 | char sound_syms_symbol; | ||
16 | |||
17 | EXPORT_SYMBOL(mixer_devs); | ||
18 | EXPORT_SYMBOL(audio_devs); | ||
19 | EXPORT_SYMBOL(num_mixers); | ||
20 | EXPORT_SYMBOL(num_audiodevs); | ||
21 | |||
22 | EXPORT_SYMBOL(midi_devs); | ||
23 | EXPORT_SYMBOL(num_midis); | ||
24 | EXPORT_SYMBOL(synth_devs); | ||
25 | |||
26 | EXPORT_SYMBOL(sound_timer_devs); | ||
27 | |||
28 | EXPORT_SYMBOL(sound_install_audiodrv); | ||
29 | EXPORT_SYMBOL(sound_install_mixer); | ||
30 | EXPORT_SYMBOL(sound_alloc_dma); | ||
31 | EXPORT_SYMBOL(sound_free_dma); | ||
32 | EXPORT_SYMBOL(sound_open_dma); | ||
33 | EXPORT_SYMBOL(sound_close_dma); | ||
34 | EXPORT_SYMBOL(sound_alloc_mididev); | ||
35 | EXPORT_SYMBOL(sound_alloc_mixerdev); | ||
36 | EXPORT_SYMBOL(sound_alloc_timerdev); | ||
37 | EXPORT_SYMBOL(sound_alloc_synthdev); | ||
38 | EXPORT_SYMBOL(sound_unload_audiodev); | ||
39 | EXPORT_SYMBOL(sound_unload_mididev); | ||
40 | EXPORT_SYMBOL(sound_unload_mixerdev); | ||
41 | EXPORT_SYMBOL(sound_unload_timerdev); | ||
42 | EXPORT_SYMBOL(sound_unload_synthdev); | ||
43 | |||
44 | EXPORT_SYMBOL(load_mixer_volumes); | ||
45 | |||
46 | EXPORT_SYMBOL(conf_printf); | ||
47 | EXPORT_SYMBOL(conf_printf2); | ||
48 | |||
49 | MODULE_DESCRIPTION("OSS Sound subsystem"); | ||
50 | MODULE_AUTHOR("Hannu Savolainen, et al."); | ||