diff options
| -rw-r--r-- | drivers/mmc/mmc.c | 3 | ||||
| -rw-r--r-- | include/mmc.h | 1 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index 1f666c2fd..64abe5b1c 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -1137,7 +1137,8 @@ int mmc_startup(struct mmc *mmc)  		}  		/* store the partition info of emmc */ -		if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) +		if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) || +		    ext_csd[EXT_CSD_BOOT_MULT])  			mmc->part_config = ext_csd[EXT_CSD_PART_CONF];  	} diff --git a/include/mmc.h b/include/mmc.h index 7b094a414..a13e2bdcf 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -160,6 +160,7 @@  #define EXT_CSD_CARD_TYPE		196	/* RO */  #define EXT_CSD_SEC_CNT			212	/* RO, 4 bytes */  #define EXT_CSD_HC_ERASE_GRP_SIZE	224	/* RO */ +#define EXT_CSD_BOOT_MULT		226	/* RO */  /*   * EXT_CSD field definitions |