From 19f2be11b00aedee7658772eebf4d324ec9fa949 Mon Sep 17 00:00:00 2001 From: Scott Long Date: Thu, 19 Jul 2001 20:53:52 +0000 Subject: [PATCH] Limit the device to only one playback channel until I can figure out why a) newpcm insists on using only the highest number channel available, and b) the maestro3 driver no longer likes anything above channel 0. --- sys/dev/sound/pci/maestro3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pci/maestro3.c b/sys/dev/sound/pci/maestro3.c index 0c4d64c238d..ae233161b19 100644 --- a/sys/dev/sound/pci/maestro3.c +++ b/sys/dev/sound/pci/maestro3.c @@ -87,7 +87,7 @@ static struct m3_card_type { }; #define M3_BUFSIZE 4096 -#define M3_PCHANS 4 /* create /dev/dsp0.[0-N] to use more than one */ +#define M3_PCHANS 1 /* create /dev/dsp0.[0-N] to use more than one */ #define M3_RCHANS 1 #define M3_MAXADDR ((1 << 27) - 1)