Correct an inverted conditional for determining the multiplier of

the user data area size.
This commit is contained in:
Marius Strobl 2017-10-19 21:57:14 +00:00
parent ec9f9562a5
commit da979d442a

View File

@ -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");