diff options
Diffstat (limited to 'audio/audio.c')
-rw-r--r-- | audio/audio.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/audio/audio.c b/audio/audio.c index 46b39df767..84eaa83593 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -38,27 +38,7 @@ #define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown" static struct audio_driver *drvtab[] = { -#ifdef CONFIG_OSS - &oss_audio_driver, -#endif -#ifdef CONFIG_ALSA - &alsa_audio_driver, -#endif -#ifdef CONFIG_COREAUDIO - &coreaudio_audio_driver, -#endif -#ifdef CONFIG_DSOUND - &dsound_audio_driver, -#endif -#ifdef CONFIG_FMOD - &fmod_audio_driver, -#endif -#ifdef CONFIG_SDL - &sdl_audio_driver, -#endif -#ifdef CONFIG_ESD - &esd_audio_driver, -#endif + AUDIO_DRIVERS &no_audio_driver, &wav_audio_driver }; |