Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Jan 2016 08:27:09 +0000 (UTC)
From:      Michal Meloun <mmel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r295067 - head/sys/dev/usb/controller
Message-ID:  <201601300827.u0U8R9QY042501@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601300827.u0U8R9QY042501>