aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/oss/copy.c
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@suse.cz>2006-01-13 09:12:11 +0100
committerJaroslav Kysela <perex@suse.cz>2006-03-22 10:23:12 +0100
commit21a3479a0b606d36fe24093f70a1c27328cec286 (patch)
tree484ce13d02df9f580bb6691ea3845160dc716c4a /sound/core/oss/copy.c
parent[ALSA] ymfpci: fix swapped channels in SPDIF output (diff)
downloadlinux-dev-21a3479a0b606d36fe24093f70a1c27328cec286.tar.xz
linux-dev-21a3479a0b606d36fe24093f70a1c27328cec286.zip
[ALSA] PCM midlevel & PCM OSS - make procfs & OSS plugin code optional
Modules: ALSA Core,PCM Midlevel,ALSA<-OSS emulation,USB generic driver 1) The verbose procfs code for the PCM midlevel and usb audio can be removed now (more patches will follow). CONFIG_SND_VERBOSE_PROCFS 2) The PCM OSS plugin system can be also compiled optionaly. CONFIG_SND_PCM_OSS_PLUGINS Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to '')
-rw-r--r--sound/core/oss/copy.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/core/oss/copy.c b/sound/core/oss/copy.c
index d6a04c2d5a75..7c008c4c0dd1 100644
--- a/sound/core/oss/copy.c
+++ b/sound/core/oss/copy.c
@@ -20,6 +20,9 @@
*/
#include <sound/driver.h>
+
+#ifdef SND_PCM_OSS_PLUGINS
+
#include <linux/time.h>
#include <sound/core.h>
#include <sound/pcm.h>
@@ -85,3 +88,5 @@ int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug,
*r_plugin = plugin;
return 0;
}
+
+#endif