global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
[platform/kernel/u-boot.git] / board / keymile / pg-wcom-ls102xa / pg-wcom-ls102xa.c
index ed8142d..1a7fa3f 100644 (file)
@@ -50,8 +50,8 @@ int dram_init(void)
 
 int board_early_init_f(void)
 {
-       struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
-       struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
+       struct ccsr_scfg *scfg = (struct ccsr_scfg *)CFG_SYS_FSL_SCFG_ADDR;
+       struct ccsr_gur __iomem *gur = (void *)CFG_SYS_FSL_GUTS_ADDR;
        struct fsl_ifc ifc = {(void *)CONFIG_SYS_IFC_ADDR, (void *)NULL};
 
        /* Disable unused MCK1 */
@@ -184,7 +184,7 @@ int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
 {
        /* Define only 1MiB range for mem_regions at the middle of the RAM */
        /* For 1GiB range mem_regions takes approx. 4min */
-       *vstart = CONFIG_SYS_SDRAM_BASE + (gd->ram_size >> 1);
+       *vstart = CFG_SYS_SDRAM_BASE + (gd->ram_size >> 1);
        *size = 1 << 20;
        return 0;
 }