diff options
author | ariff <ariff@FreeBSD.org> | 2006-01-27 02:01:27 +0000 |
---|---|---|
committer | ariff <ariff@FreeBSD.org> | 2006-01-27 02:01:27 +0000 |
commit | a587c07aacfa4288a3b84332b7b1232353eed047 (patch) | |
tree | bb2e8ff44804867981ba201aa690ebec581e8027 | |
parent | 41a6066c80c73d93c3fa53c72be293ac0cff3fb5 (diff) | |
download | FreeBSD-src-a587c07aacfa4288a3b84332b7b1232353eed047.zip FreeBSD-src-a587c07aacfa4288a3b84332b7b1232353eed047.tar.gz |
Enable full duplex operation since it works and to solve panic issue.
PR: kern/91992
MFC after: 2 days
-rw-r--r-- | sys/dev/sound/pci/solo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/solo.c b/sys/dev/sound/pci/solo.c index 5d1f15f..991f8cd 100644 --- a/sys/dev/sound/pci/solo.c +++ b/sys/dev/sound/pci/solo.c @@ -39,7 +39,7 @@ SND_DECLARE_FILE("$FreeBSD$"); #define ABS(x) (((x) < 0)? -(x) : (x)) /* if defined, playback always uses the 2nd channel and full duplex works */ -#undef ESS18XX_DUPLEX +#define ESS18XX_DUPLEX 1 /* more accurate clocks and split audio1/audio2 rates */ #define ESS18XX_NEWSPEED |