diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-10-04 05:17:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:32 -0400 |
commit | d56b9b9c464a10ab1ee51a4c6190a2b57b8ef7a6 (patch) | |
tree | a48388734053900a8379042757ee241d1e9dfc7b /sound/sound_core.c | |
parent | 595182bcdf64fbfd7ae22c67ea6081b7d387d246 (diff) |
[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>
Diffstat (limited to 'sound/sound_core.c')
-rw-r--r-- | sound/sound_core.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/sound/sound_core.c b/sound/sound_core.c index 0b0a016ca6d6..5322c50c9617 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c | |||
@@ -366,25 +366,6 @@ int register_sound_dsp(const struct file_operations *fops, int dev) | |||
366 | EXPORT_SYMBOL(register_sound_dsp); | 366 | EXPORT_SYMBOL(register_sound_dsp); |
367 | 367 | ||
368 | /** | 368 | /** |
369 | * register_sound_synth - register a synth device | ||
370 | * @fops: File operations for the driver | ||
371 | * @dev: Unit number to allocate | ||
372 | * | ||
373 | * Allocate a synth device. Unit is the number of the synth device requested. | ||
374 | * Pass -1 to request the next free synth unit. On success the allocated | ||
375 | * number is returned, on failure a negative error code is returned. | ||
376 | */ | ||
377 | |||
378 | |||
379 | int register_sound_synth(const struct file_operations *fops, int dev) | ||
380 | { | ||
381 | return sound_insert_unit(&chains[9], fops, dev, 9, 137, | ||
382 | "synth", S_IRUSR | S_IWUSR, NULL); | ||
383 | } | ||
384 | |||
385 | EXPORT_SYMBOL(register_sound_synth); | ||
386 | |||
387 | /** | ||
388 | * unregister_sound_special - unregister a special sound device | 369 | * unregister_sound_special - unregister a special sound device |
389 | * @unit: unit number to allocate | 370 | * @unit: unit number to allocate |
390 | * | 371 | * |
@@ -449,21 +430,6 @@ void unregister_sound_dsp(int unit) | |||
449 | 430 | ||
450 | EXPORT_SYMBOL(unregister_sound_dsp); | 431 | EXPORT_SYMBOL(unregister_sound_dsp); |
451 | 432 | ||
452 | /** | ||
453 | * unregister_sound_synth - unregister a synth device | ||
454 | * @unit: unit number to allocate | ||
455 | * | ||
456 | * Release a sound device that was allocated with register_sound_synth(). | ||
457 | * The unit passed is the return value from the register function. | ||
458 | */ | ||
459 | |||
460 | void unregister_sound_synth(int unit) | ||
461 | { | ||
462 | return sound_remove_unit(&chains[9], unit); | ||
463 | } | ||
464 | |||
465 | EXPORT_SYMBOL(unregister_sound_synth); | ||
466 | |||
467 | /* | 433 | /* |
468 | * Now our file operations | 434 | * Now our file operations |
469 | */ | 435 | */ |