From 1333b4a4317863c0b9fa818551ce66f704034a6b Mon Sep 17 00:00:00 2001 From: Ariff Abdullah Date: Wed, 4 Jan 2006 15:35:55 +0000 Subject: [PATCH] Fix broken capabilities, causing failure during channel reset. Its min/max speed were off by -/+ 1000. Reported by: [1] Ion-Mihai Tetcu [2] barner MFC after: 1 day [1] http://lists.freebsd.org/mailman/htdig/freebsd-multimedia/2005-December/003189.html [2] http://lists.freebsd.org/mailman/htdig/freebsd-multimedia/2006-January/003422.html --- sys/dev/sound/pci/solo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/sound/pci/solo.c b/sys/dev/sound/pci/solo.c index 8cbda9e6659..ae95e0c9c52 100644 --- a/sys/dev/sound/pci/solo.c +++ b/sys/dev/sound/pci/solo.c @@ -55,7 +55,7 @@ static u_int32_t ess_playfmt[] = { AFMT_STEREO | AFMT_U16_LE, 0 }; -static struct pcmchan_caps ess_playcaps = {5000, 49000, ess_playfmt, 0}; +static struct pcmchan_caps ess_playcaps = {6000, 48000, ess_playfmt, 0}; /* * Recording output is byte-swapped @@ -71,7 +71,7 @@ static u_int32_t ess_recfmt[] = { AFMT_STEREO | AFMT_U16_BE, 0 }; -static struct pcmchan_caps ess_reccaps = {5000, 49000, ess_recfmt, 0}; +static struct pcmchan_caps ess_reccaps = {6000, 48000, ess_recfmt, 0}; struct ess_info; -- 2.45.2