diff options
author | Terry Lv <r65388@freescale.com> | 2011-08-12 12:58:07 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2011-09-01 11:45:02 +0800 |
commit | 32429d7b461f8b6a96d7b0f2bb3e2b1270780091 (patch) | |
tree | d16739584df7eae3e63e682f2889a45bc6899842 /drivers | |
parent | 72ac6998a7700c2c64a4a7f4d6d44bbc980558f6 (diff) | |
download | u-boot-imx-32429d7b461f8b6a96d7b0f2bb3e2b1270780091.zip u-boot-imx-32429d7b461f8b6a96d7b0f2bb3e2b1270780091.tar.gz u-boot-imx-32429d7b461f8b6a96d7b0f2bb3e2b1270780091.tar.bz2 |
ENGR00154666-4: Align u-boot mmc command with community
Change fastboot code for that fastboot uses mmc command to access card.
Thus the code need to be modified to new mmc command.
Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/fastboot/fastboot.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/fastboot/fastboot.c b/drivers/fastboot/fastboot.c index e775fab..a922b30 100644 --- a/drivers/fastboot/fastboot.c +++ b/drivers/fastboot/fastboot.c @@ -330,10 +330,8 @@ static int fastboot_init_mmc_sata_ptable(void) } /* multiple boot paritions for eMMC 4.3 later */ -#ifdef CONFIG_BOOT_PARTITION_ACCESS - if (mmc->boot_size_mult) + if (mmc->part_config != MMCPART_NOAVAILABLE) boot_partition = 1; -#endif } memset((char *)ptable, 0, |