stmhal: Port of f4 hal commit 09de030 to updated f7 hal.

This commit is contained in:
Rami Ali 2016-12-06 11:29:46 +11:00 committed by Damien George
parent e1c6ed634f
commit 821863751f

View File

@ -1581,7 +1581,7 @@ HAL_SD_ErrorTypedef HAL_SD_Get_CardInfo(SD_HandleTypeDef *hsd, HAL_SD_CardInfoTy
/* Byte 10 */
tmp = (uint8_t)((hsd->CSD[2] & 0x0000FF00U) >> 8);
pCardInfo->CardCapacity = (uint64_t)(((uint64_t)pCardInfo->SD_csd.DeviceSize + 1) * 512 * 1024);
pCardInfo->CardCapacity = (uint64_t)(((uint64_t)pCardInfo->SD_csd.DeviceSize + 1ULL) * 512 * 1024);
pCardInfo->CardBlockSize = 512;
}
else