mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
d56b9b9c46
This patch contains the scheduled removal of OSS drivers that: - have ALSA drivers for the same hardware without known regressions and - whose Kconfig options have been removed in 2.6.17. [michal.k.k.piotrowski@gmail.com: build fix] Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Michal Piotrowski <michal.k.k.piotrowski@gmail.com> Cc: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
23 lines
463 B
C
23 lines
463 B
C
/*
|
|
* Exported symbols for sequencer driver.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
char sequencer_syms_symbol;
|
|
|
|
#include "sound_config.h"
|
|
#include "sound_calls.h"
|
|
|
|
EXPORT_SYMBOL(note_to_freq);
|
|
EXPORT_SYMBOL(compute_finetune);
|
|
EXPORT_SYMBOL(seq_copy_to_input);
|
|
EXPORT_SYMBOL(seq_input_event);
|
|
EXPORT_SYMBOL(sequencer_init);
|
|
EXPORT_SYMBOL(sequencer_timer);
|
|
|
|
EXPORT_SYMBOL(sound_timer_init);
|
|
EXPORT_SYMBOL(sound_timer_interrupt);
|
|
EXPORT_SYMBOL(sound_timer_syncinterval);
|
|
|