mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 04:48:04 +09:00
Revert "mmc: fix non-arm build due to eMMC 4.3+ change"
This reverts commit 1c119f2c16.
This commit is contained in:
@@ -255,8 +255,8 @@ static int mmc_read_ext_csd(struct mmc_card *card)
|
||||
/* Cards with density > 2GiB are sector addressed */
|
||||
if (card->ext_csd.sectors > (2u * 1024 * 1024 * 1024) / 512) {
|
||||
unsigned boot_sectors;
|
||||
/* size is in 256K chunks, i.e. 512 sectors each */
|
||||
boot_sectors = ext_csd[EXT_CSD_BOOT_SIZE_MULTI] * 512;
|
||||
boot_sectors = ext_csd[EXT_CSD_BOOT_SIZE_MULTI];
|
||||
boot_sectors *= SZ_256K / 512;
|
||||
card->ext_csd.sectors -= boot_sectors;
|
||||
mmc_card_set_blockaddr(card);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user