[PATCH] The scheduled removal of some OSS drivers

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>
This commit is contained in:
Adrian Bunk
2006-10-04 02:17:22 -07:00
committed by Linus Torvalds
parent 595182bcdf
commit d56b9b9c46
81 changed files with 6 additions and 62072 deletions

View File

@@ -365,25 +365,6 @@ int register_sound_dsp(const struct file_operations *fops, int dev)
EXPORT_SYMBOL(register_sound_dsp);
/**
* register_sound_synth - register a synth device
* @fops: File operations for the driver
* @dev: Unit number to allocate
*
* Allocate a synth device. Unit is the number of the synth device requested.
* Pass -1 to request the next free synth unit. On success the allocated
* number is returned, on failure a negative error code is returned.
*/
int register_sound_synth(const struct file_operations *fops, int dev)
{
return sound_insert_unit(&chains[9], fops, dev, 9, 137,
"synth", S_IRUSR | S_IWUSR, NULL);
}
EXPORT_SYMBOL(register_sound_synth);
/**
* unregister_sound_special - unregister a special sound device
* @unit: unit number to allocate
@@ -449,21 +430,6 @@ void unregister_sound_dsp(int unit)
EXPORT_SYMBOL(unregister_sound_dsp);
/**
* unregister_sound_synth - unregister a synth device
* @unit: unit number to allocate
*
* Release a sound device that was allocated with register_sound_synth().
* The unit passed is the return value from the register function.
*/
void unregister_sound_synth(int unit)
{
return sound_remove_unit(&chains[9], unit);
}
EXPORT_SYMBOL(unregister_sound_synth);
/*
* Now our file operations
*/