Author: hselasky
Date: Tue Aug 20 07:15:16 2013
New Revision: 254552
URL: http://svnweb.freebsd.org/changeset/base/254552

Log:
  MFC r254238:
  Correct an EHCI register write.
  
  Reported by:    aseem.jo...@gmail.com

Modified:
  stable/8/sys/dev/usb/controller/ehci.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/dev/   (props changed)
  stable/8/sys/dev/usb/   (props changed)

Modified: stable/8/sys/dev/usb/controller/ehci.c
==============================================================================
--- stable/8/sys/dev/usb/controller/ehci.c      Tue Aug 20 07:13:01 2013        
(r254551)
+++ stable/8/sys/dev/usb/controller/ehci.c      Tue Aug 20 07:15:16 2013        
(r254552)
@@ -256,7 +256,7 @@ ehci_init_sub(struct ehci_softc *sc)
                DPRINTF("HCC uses 64-bit structures\n");
 
                /* MUST clear segment register if 64 bit capable */
-               EWRITE4(sc, EHCI_CTRLDSSEGMENT, 0);
+               EOWRITE4(sc, EHCI_CTRLDSSEGMENT, 0);
        }
 
        usbd_get_page(&sc->sc_hw.pframes_pc, 0, &buf_res);
_______________________________________________
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