Date: Mon, 24 Jul 2000 13:49:40 -0400 (EDT) From: Kenneth Wayne Culver <culverk@wam.umd.edu> To: freebsd-current@freebsd.org Subject: patch for ds1 soundcard Message-ID: <Pine.GSO.4.21.0007241347180.13577-200000@rac10.wam.umd.edu>
next in thread | raw e-mail | index | archive | help
[-- Attachment #1 --] I found on my computer that a ds1 builtin soundcard of type 10 (found in the file) will not init correctly unless the same 400ms wait is applied to it that is applied to type 8 cards. I have included a patch to make this happen. The patch was created against a -STABLE from today, but should not be too hard to get into -CURRENT as it only modifies one line of code. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= [-- Attachment #2 --] Index: sys/dev/sound/pci/ds1.c =================================================================== RCS file: /home/ncvs/src/sys/dev/sound/pci/ds1.c,v retrieving revision 1.8.2.1 diff -r1.8.2.1 ds1.c 295c295 < if (sc->type == 8) --- > if (sc->type == 8 || sc->type == 10)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.21.0007241347180.13577-200000>
