svn commit: r311664 - head/sys/dev/mmc

Conrad E. Meyer cem at FreeBSD.org
Sun Jan 8 06:20:23 UTC 2017


Author: cem
Date: Sun Jan  8 06:20:21 2017
New Revision: 311664
URL: https://svnweb.freebsd.org/changeset/base/311664

Log:
  mmc: Accept even lower voltage for Cherryview
  
  And HP x2 210, per DragonFlyBSD 240bd9cd58f8259c12c14a8006837e698.
  
  Submitted by:	Johannes Lundberg <yohanesu75 at gmail.com>
  No objection:	gonzo@
  Obtained from:	DragonFlyBSD

Modified:
  head/sys/dev/mmc/mmcreg.h

Modified: head/sys/dev/mmc/mmcreg.h
==============================================================================
--- head/sys/dev/mmc/mmcreg.h	Sun Jan  8 04:27:08 2017	(r311663)
+++ head/sys/dev/mmc/mmcreg.h	Sun Jan  8 06:20:21 2017	(r311664)
@@ -355,8 +355,8 @@ struct mmc_request {
  */
 #define	MMC_OCR_VOLTAGE	0x3fffffffU	/* Vdd Voltage mask */
 #define	MMC_OCR_LOW_VOLTAGE (1u << 7)	/* Low Voltage Range -- tbd */
+#define	MMC_OCR_MIN_VOLTAGE_SHIFT	7
 #define	MMC_OCR_200_210	(1U << 8)	/* Vdd voltage 2.00 ~ 2.10 */
-#define	MMC_OCR_MIN_VOLTAGE_SHIFT	8
 #define	MMC_OCR_210_220	(1U << 9)	/* Vdd voltage 2.10 ~ 2.20 */
 #define	MMC_OCR_220_230	(1U << 10)	/* Vdd voltage 2.20 ~ 2.30 */
 #define	MMC_OCR_230_240	(1U << 11)	/* Vdd voltage 2.30 ~ 2.40 */


More information about the svn-src-all mailing list