summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-01-28 09:07:53 +0100
committerTakashi Iwai <tiwai@suse.de>2009-01-28 09:07:53 +0100
commit56fa81fdab3ff1363995ba97558e223a331f5321 (patch)
treef4720e220bfa4f68a623a020d5bdc7a4aeed8a88
parentd3a8e853fb0780ecf85b54eba0926698970b3934 (diff)
downloadalsa-lib-56fa81fdab3ff1363995ba97558e223a331f5321.tar.gz
Remove own "default" PCM config from GUS.conf
The system-wide default PCM config works now (by the fix of plug mmap_emul support), thus no card-specific hackish config is needed for GUS. Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--src/conf/cards/GUS.conf54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/conf/cards/GUS.conf b/src/conf/cards/GUS.conf
index b56d1ea3..d744c548 100644
--- a/src/conf/cards/GUS.conf
+++ b/src/conf/cards/GUS.conf
@@ -17,57 +17,3 @@ GUS.pcm.front.0 {
card $CARD
}
}
-
-#
-# First route with plug to drop mmap requirement.
-# Then, use the mmap_emul plugin to allow using
-# noninterleaved channels.
-#
-
-!pcm.default {
- @args [ CARD DEV SUBDEV ]
- @args.CARD {
- type string
- default {
- @func getenv
- vars [
- ALSA_PCM_CARD
- ALSA_CARD
- ]
- default {
- @func refer
- name defaults.pcm.card
- }
- }
- }
- @args.DEV {
- type integer
- default {
- @func igetenv
- vars [
- ALSA_PCM_DEVICE
- ]
- default {
- @func refer
- name defaults.pcm.device
- }
- }
- }
- @args.SUBDEV {
- type integer
- default {
- @func refer
- name defaults.pcm.subdevice
- }
- }
- type plug
- slave.pcm {
- type mmap_emul
- slave.pcm {
- type hw
- card $CARD
- device $DEV
- subdevice $SUBDEV
- }
- }
-}