svn commit: r254552 - stable/8/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Tue Aug 20 07:15:17 UTC 2013


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.jolly at 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);


More information about the svn-src-stable-8 mailing list