Author: avatar
Date: Sun Aug 26 13:03:58 2018
New Revision: 338326
URL: https://svnweb.freebsd.org/changeset/base/338326

Log:
  MFC r338038: Extending the delay cycles to give the codec more time to pump 
ADC data across the AC-link.
  
  Without this patch, some CS4614 cards will need users to reload the driver 
manually or
  the hardware won't be initialised properly. Something like:
  
        # kldload snd_csa
        # kldunload snd_csa
        # kldload snd_csa
  
  Tested with:  Terratec SiXPack 5.1+

Modified:
  stable/10/sys/dev/sound/pci/csa.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sound/pci/csa.c
==============================================================================
--- stable/10/sys/dev/sound/pci/csa.c   Sun Aug 26 13:03:01 2018        
(r338325)
+++ stable/10/sys/dev/sound/pci/csa.c   Sun Aug 26 13:03:58 2018        
(r338326)
@@ -713,7 +713,7 @@ csa_initialize(sc_p scp)
         * the codec is pumping ADC data across the AC-link.
         */
        acisv = 0;
-       for (i = 0 ; i < 1000 ; i++) {
+       for (i = 0 ; i < 2000 ; i++) {
                /*
                 * First, lets wait a short while to let things settle out a 
bit,
                 * and to prevent retrying the read too quickly.
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to