svn commit: r254238 - head/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Mon Aug 12 06:09:29 UTC 2013


Author: hselasky
Date: Mon Aug 12 06:09:28 2013
New Revision: 254238
URL: http://svnweb.freebsd.org/changeset/base/254238

Log:
  Correct an EHCI register write.
  
  MFC after:	1 week
  Reported by:	aseem.jolly at gmail.com

Modified:
  head/sys/dev/usb/controller/ehci.c

Modified: head/sys/dev/usb/controller/ehci.c
==============================================================================
--- head/sys/dev/usb/controller/ehci.c	Mon Aug 12 03:52:23 2013	(r254237)
+++ head/sys/dev/usb/controller/ehci.c	Mon Aug 12 06:09:28 2013	(r254238)
@@ -259,7 +259,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-head mailing list