IB/cache: Use correct pointer to calculate size
[linux-2.6/kvm.git] / sound / oss / sound_syms.c
blobcb7c33fe5b0561386134d82c12a64b17d7bad202
1 /*
2 * The sound core exports the following symbols to the rest of
3 * modulespace.
5 * (C) Copyright 1997 Alan Cox, Licensed under the GNU GPL
7 * Thu May 27 1999 Andrew J. Kroll <ag784@freenet..buffalo..edu>
8 * left out exported symbol... fixed
9 */
11 #include <linux/module.h>
12 #include "sound_config.h"
13 #include "sound_calls.h"
15 char sound_syms_symbol;
17 EXPORT_SYMBOL(mixer_devs);
18 EXPORT_SYMBOL(audio_devs);
19 EXPORT_SYMBOL(num_mixers);
20 EXPORT_SYMBOL(num_audiodevs);
22 EXPORT_SYMBOL(midi_devs);
23 EXPORT_SYMBOL(num_midis);
24 EXPORT_SYMBOL(synth_devs);
26 EXPORT_SYMBOL(sound_timer_devs);
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);
44 EXPORT_SYMBOL(load_mixer_volumes);
46 EXPORT_SYMBOL(conf_printf);
47 EXPORT_SYMBOL(conf_printf2);
49 MODULE_DESCRIPTION("OSS Sound subsystem");
50 MODULE_AUTHOR("Hannu Savolainen, et al.");