diff options
author | Xinyu Chen <xinyu.chen@freescale.com> | 2011-07-27 14:05:02 +0800 |
---|---|---|
committer | Xinyu Chen <xinyu.chen@freescale.com> | 2011-07-27 14:05:02 +0800 |
commit | 7d0f757e131d27b8816af06d183bdc4dc28c5f92 (patch) | |
tree | 01b88a4976948d3ba62ad389df92b894b1a25d62 /drivers/fastboot | |
parent | b6dadf2aabf4ef56acff03a3df269cb3c9b4147f (diff) | |
download | u-boot-imx-7d0f757e131d27b8816af06d183bdc4dc28c5f92.zip u-boot-imx-7d0f757e131d27b8816af06d183bdc4dc28c5f92.tar.gz u-boot-imx-7d0f757e131d27b8816af06d183bdc4dc28c5f92.tar.bz2 |
ENGR00153759 mx51: fix fastboot build failed without boot partition macro
In mx51 configuration, CONFIG_BOOT_PARTITION_ACCESS is not defined.
This cause build error to fastboot.c
Signed-off-by: Xinyu Chen <xinyu.chen@freescale.com>
Diffstat (limited to 'drivers/fastboot')
-rw-r--r-- | drivers/fastboot/fastboot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/fastboot/fastboot.c b/drivers/fastboot/fastboot.c index 97572cc..e775fab 100644 --- a/drivers/fastboot/fastboot.c +++ b/drivers/fastboot/fastboot.c @@ -330,8 +330,10 @@ 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) boot_partition = 1; +#endif } memset((char *)ptable, 0, |