Author: marius
Date: Thu Oct 19 21:57:14 2017
New Revision: 324776
URL: https://svnweb.freebsd.org/changeset/base/324776
Log:
Correct an inverted conditional for determining the multiplier of
the user data area size.
Modified:
head/sys/dev/mmc/mmcsd.c
Modified: head/sys/dev/mmc/mmcsd.c
==============================================================================
--- head/sys/dev/mmc/mmcsd.c Thu Oct 19 21:34:53 2017 (r324775)
+++ head/sys/dev/mmc/mmcsd.c Thu Oct 19 21:57:14 2017 (r324776)
@@ -327,7 +327,7 @@ mmcsd_attach(device_t dev)
(ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) +
(ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) +
(ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24)) *
- (sc->high_cap != 0 ? MMC_SECTOR_SIZE : 1);
+ (sc->high_cap == 0 ? MMC_SECTOR_SIZE : 1);
} else if (bootverbose)
device_printf(dev,
"enhanced user data area spans entire device\n");
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"