diff options
author | Scott Wood <scottwood@freescale.com> | 2012-12-14 16:03:55 -0600 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2012-12-14 16:03:55 -0600 |
commit | 88c5c68ffa277bf01b3254cf5a059e2cbe07be97 (patch) | |
tree | f56b444a1c85d94d6a386df090def099632489fe /common/cmd_spl.c | |
parent | 0b38fffbe413fc0725c750d046ca62c23fca196e (diff) | |
parent | 6e9005bd96ff0f0548a787ffafee10664a57a8e1 (diff) |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'common/cmd_spl.c')
-rw-r--r-- | common/cmd_spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/cmd_spl.c b/common/cmd_spl.c index 9ec054af3b..e3c543b46a 100644 --- a/common/cmd_spl.c +++ b/common/cmd_spl.c @@ -130,10 +130,12 @@ static int spl_export(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) if (call_bootm(argc, argv, subcmd_list[(int)c->cmd])) return -1; switch ((int)c->cmd) { +#ifdef CONFIG_OF_LIBFDT case SPL_EXPORT_FDT: printf("Argument image is now in RAM: 0x%p\n", (void *)images.ft_addr); break; +#endif case SPL_EXPORT_ATAGS: printf("Argument image is now in RAM at: 0x%p\n", (void *)gd->bd->bi_boot_params); |