svn commit: r254551 - stable/9/sys/dev/usb/controller
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Aug 20 07:13:01 UTC 2013
Author: hselasky
Date: Tue Aug 20 07:13:01 2013
New Revision: 254551
URL: http://svnweb.freebsd.org/changeset/base/254551
Log:
MFC r254238:
Correct an EHCI register write.
Reported by: aseem.jolly at gmail.com
Modified:
stable/9/sys/dev/usb/controller/ehci.c
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/dev/ (props changed)
Modified: stable/9/sys/dev/usb/controller/ehci.c
==============================================================================
--- stable/9/sys/dev/usb/controller/ehci.c Tue Aug 20 07:11:53 2013 (r254550)
+++ stable/9/sys/dev/usb/controller/ehci.c Tue Aug 20 07:13:01 2013 (r254551)
@@ -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-9
mailing list