rename CFG_ macros to CONFIG_SYS
[platform/kernel/u-boot.git] / board / eXalion / eXalion.c
index c5dff24..34538c4 100644 (file)
@@ -56,12 +56,12 @@ int checkflash (void)
 phys_size_t initdram (int board_type)
 {
        int i, cnt;
-       volatile uchar *base = CFG_SDRAM_BASE;
+       volatile uchar *base = CONFIG_SYS_SDRAM_BASE;
        volatile ulong *addr;
        ulong save[32];
        ulong val, ret = 0;
 
-       for (i = 0, cnt = (CFG_MAX_RAM_SIZE / sizeof (long)) >> 1; cnt > 0;
+       for (i = 0, cnt = (CONFIG_SYS_MAX_RAM_SIZE / sizeof (long)) >> 1; cnt > 0;
             cnt >>= 1) {
                addr = (volatile ulong *) base + cnt;
                save[i++] = *addr;
@@ -77,7 +77,7 @@ phys_size_t initdram (int board_type)
                goto Done;
        }
 
-       for (cnt = 1; cnt <= CFG_MAX_RAM_SIZE / sizeof (long); cnt <<= 1) {
+       for (cnt = 1; cnt <= CONFIG_SYS_MAX_RAM_SIZE / sizeof (long); cnt <<= 1) {
                addr = (volatile ulong *) base + cnt;
                val = *addr;
                *addr = save[--i];
@@ -100,7 +100,7 @@ phys_size_t initdram (int board_type)
                }
        }
 
-       ret = CFG_MAX_RAM_SIZE;
+       ret = CONFIG_SYS_MAX_RAM_SIZE;
       Done:
        return ret;
 }