global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
[platform/kernel/u-boot.git] / arch / powerpc / lib / bootm.c
index 5127878..1df0822 100644 (file)
@@ -113,7 +113,7 @@ static void boot_jump_linux(struct bootm_headers *images)
                           cmd_start, cmd_end, 0, 0);
                /* does not return */
        }
-       return ;
+       return;
 }
 
 void arch_lmb_reserve(struct lmb *lmb)
@@ -126,7 +126,7 @@ void arch_lmb_reserve(struct lmb *lmb)
 
 #ifdef DEBUG
        if (((u64)bootmap_base + bootm_size) >
-           (CONFIG_SYS_SDRAM_BASE + (u64)gd->ram_size))
+           (CFG_SYS_SDRAM_BASE + (u64)gd->ram_size))
                puts("WARNING: bootm_low + bootm_size exceed total memory\n");
        if ((bootmap_base + bootm_size) > get_effective_memsize())
                puts("WARNING: bootm_low + bootm_size exceed eff. memory\n");
@@ -148,7 +148,7 @@ void arch_lmb_reserve(struct lmb *lmb)
        cpu_mp_lmb_reserve(lmb);
 #endif
 
-       return ;
+       return;
 }
 
 static void boot_prep_linux(struct bootm_headers *images)