Author: rnoland
Date: Wed Jun 20 21:32:54 2012
New Revision: 237342
URL: http://svn.freebsd.org/changeset/base/237342

Log:
  MFC r236245
  
  Fix a typo in wbwd so that CRF5 is actually written to the data register
  rather than the index register.

Modified:
  stable/9/sys/dev/wbwd/wbwd.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/amd64/include/xen/   (props changed)
  stable/9/sys/boot/   (props changed)
  stable/9/sys/boot/i386/efi/   (props changed)
  stable/9/sys/boot/ia64/efi/   (props changed)
  stable/9/sys/boot/ia64/ski/   (props changed)
  stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
  stable/9/sys/boot/powerpc/ofw/   (props changed)
  stable/9/sys/cddl/contrib/opensolaris/   (props changed)
  stable/9/sys/conf/   (props changed)
  stable/9/sys/contrib/dev/acpica/   (props changed)
  stable/9/sys/contrib/octeon-sdk/   (props changed)
  stable/9/sys/contrib/pf/   (props changed)
  stable/9/sys/contrib/x86emu/   (props changed)
  stable/9/sys/dev/   (props changed)
  stable/9/sys/dev/e1000/   (props changed)
  stable/9/sys/dev/isp/   (props changed)
  stable/9/sys/dev/ixgbe/   (props changed)
  stable/9/sys/fs/   (props changed)
  stable/9/sys/fs/ntfs/   (props changed)
  stable/9/sys/modules/   (props changed)

Modified: stable/9/sys/dev/wbwd/wbwd.c
==============================================================================
--- stable/9/sys/dev/wbwd/wbwd.c        Wed Jun 20 21:29:19 2012        
(r237341)
+++ stable/9/sys/dev/wbwd/wbwd.c        Wed Jun 20 21:32:54 2012        
(r237342)
@@ -638,7 +638,7 @@ wb_attach(device_t dev)
         */
        sc->reg_1 &= ~(WB_LDN8_CRF5_KEYB_P20);
        write_efir_1(sc, WB_LDN8_CRF5);
-       write_efir_1(sc, sc->reg_1);
+       write_efdr_1(sc, sc->reg_1);
 
        sc->reg_2 &= ~WB_LDN8_CRF7_CLEAR_MASK;
        write_efir_1(sc, WB_LDN8_CRF7);
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to