mmc: core: Cleanup eMMC4.5 conditionals
Code cleanup, putting all eMMC 4.5 detection cases together. This patch removes one if-statement and assembles all. And it also removes variable initialization below else-statement -- all members of card structure are already set to zero at card-init. Signed-off-by: Seungwon Jeon <tgih.jun@samsung.com> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
committed by
Chris Ball
parent
9b68256cde
commit
336c716ae2
@@ -467,29 +467,27 @@ static int mmc_read_ext_csd(struct mmc_card *card, u8 *ext_csd)
|
|||||||
card->ext_csd.rst_n_function = ext_csd[EXT_CSD_RST_N_FUNCTION];
|
card->ext_csd.rst_n_function = ext_csd[EXT_CSD_RST_N_FUNCTION];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* eMMC v4.5 or later */
|
|
||||||
if (card->ext_csd.rev >= 6)
|
|
||||||
card->ext_csd.feature_support |= MMC_DISCARD_FEATURE;
|
|
||||||
|
|
||||||
card->ext_csd.raw_erased_mem_count = ext_csd[EXT_CSD_ERASED_MEM_CONT];
|
card->ext_csd.raw_erased_mem_count = ext_csd[EXT_CSD_ERASED_MEM_CONT];
|
||||||
if (ext_csd[EXT_CSD_ERASED_MEM_CONT])
|
if (ext_csd[EXT_CSD_ERASED_MEM_CONT])
|
||||||
card->erased_byte = 0xFF;
|
card->erased_byte = 0xFF;
|
||||||
else
|
else
|
||||||
card->erased_byte = 0x0;
|
card->erased_byte = 0x0;
|
||||||
|
|
||||||
|
/* eMMC v4.5 or later */
|
||||||
if (card->ext_csd.rev >= 6) {
|
if (card->ext_csd.rev >= 6) {
|
||||||
|
card->ext_csd.feature_support |= MMC_DISCARD_FEATURE;
|
||||||
|
|
||||||
card->ext_csd.generic_cmd6_time = 10 *
|
card->ext_csd.generic_cmd6_time = 10 *
|
||||||
ext_csd[EXT_CSD_GENERIC_CMD6_TIME];
|
ext_csd[EXT_CSD_GENERIC_CMD6_TIME];
|
||||||
card->ext_csd.power_off_longtime = 10 *
|
card->ext_csd.power_off_longtime = 10 *
|
||||||
ext_csd[EXT_CSD_POWER_OFF_LONG_TIME];
|
ext_csd[EXT_CSD_POWER_OFF_LONG_TIME];
|
||||||
} else
|
|
||||||
card->ext_csd.generic_cmd6_time = 0;
|
|
||||||
|
|
||||||
card->ext_csd.cache_size =
|
card->ext_csd.cache_size =
|
||||||
ext_csd[EXT_CSD_CACHE_SIZE + 0] << 0 |
|
ext_csd[EXT_CSD_CACHE_SIZE + 0] << 0 |
|
||||||
ext_csd[EXT_CSD_CACHE_SIZE + 1] << 8 |
|
ext_csd[EXT_CSD_CACHE_SIZE + 1] << 8 |
|
||||||
ext_csd[EXT_CSD_CACHE_SIZE + 2] << 16 |
|
ext_csd[EXT_CSD_CACHE_SIZE + 2] << 16 |
|
||||||
ext_csd[EXT_CSD_CACHE_SIZE + 3] << 24;
|
ext_csd[EXT_CSD_CACHE_SIZE + 3] << 24;
|
||||||
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return err;
|
return err;
|
||||||
|
Reference in New Issue
Block a user