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

Michal Meloun mmel at FreeBSD.org
Sat Jan 30 08:27:10 UTC 2016


Author: mmel
Date: Sat Jan 30 08:27:09 2016
New Revision: 295067
URL: https://svnweb.freebsd.org/changeset/base/295067

Log:
  EHCI: Correct address of EHCI_USBMODE_LPM register is 0xC8, not 0xA8.

Modified:
  head/sys/dev/usb/controller/ehcireg.h

Modified: head/sys/dev/usb/controller/ehcireg.h
==============================================================================
--- head/sys/dev/usb/controller/ehcireg.h	Sat Jan 30 08:02:12 2016	(r295066)
+++ head/sys/dev/usb/controller/ehcireg.h	Sat Jan 30 08:27:09 2016	(r295067)
@@ -167,7 +167,7 @@
  * bits are equal
  */
 #define	EHCI_USBMODE_NOLPM	0x68	/* RW USB Device mode reg (no LPM) */
-#define	EHCI_USBMODE_LPM	0xA8	/* RW USB Device mode reg (LPM) */
+#define	EHCI_USBMODE_LPM	0xC8	/* RW USB Device mode reg (LPM) */
 #define	EHCI_UM_CM		0x00000003	/* R/WO Controller Mode */
 #define	EHCI_UM_CM_IDLE		0x0	/* Idle */
 #define	EHCI_UM_CM_HOST		0x3	/* Host Controller */


More information about the svn-src-head mailing list