]> git.sur5r.net Git - u-boot/commitdiff
ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
authorPeter Tyser <ptyser@xes-inc.com>
Fri, 31 Oct 2008 16:26:44 +0000 (11:26 -0500)
committerWolfgang Denk <wd@denx.de>
Sun, 2 Nov 2008 15:39:31 +0000 (16:39 +0100)
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
lib_ppc/bootm.c

index a436f75abad32a2ce23f0d3c535d4b7e1c2806fc..e03d76390715dd1e41e8826cb6ca145b089de7bc 100644 (file)
@@ -224,12 +224,13 @@ static int boot_bd_t_linux(bootm_headers_t *images)
 
 static int boot_body_linux(bootm_headers_t *images)
 {
-       ulong rd_len, bootmap_base = getenv_bootm_low();
-       ulong of_size = images->ft_len;
+       ulong rd_len;
        struct lmb *lmb = &images->lmb;
        ulong *initrd_start = &images->initrd_start;
        ulong *initrd_end = &images->initrd_end;
 #if defined(CONFIG_OF_LIBFDT)
+       ulong bootmap_base = getenv_bootm_low();
+       ulong of_size = images->ft_len;
        char **of_flat_tree = &images->ft_addr;
 #endif