rename CFG_ENV macros to CONFIG_ENV
[platform/kernel/u-boot.git] / board / flagadm / flash.c
index fc5d963..aa8b0f9 100644 (file)
@@ -77,15 +77,15 @@ unsigned long flash_init (void)
        /* monitor protection ON by default */
        flash_protect(FLAG_PROTECT_SET,
                      CFG_MONITOR_BASE,
-                     CFG_MONITOR_BASE+CFG_MONITOR_LEN-1,
+                     CFG_MONITOR_BASE+monitor_flash_len-1,
                      &flash_info[0]);
 #endif
 
-#ifdef CFG_ENV_IS_IN_FLASH
+#ifdef CONFIG_ENV_IS_IN_FLASH
        /* ENV protection ON by default */
        flash_protect(FLAG_PROTECT_SET,
-                     CFG_ENV_OFFSET,
-                     CFG_ENV_OFFSET+CFG_ENV_SIZE-1,
+                     CONFIG_ENV_OFFSET,
+                     CONFIG_ENV_OFFSET+CONFIG_ENV_SIZE-1,
                      &flash_info[0]);
 #endif
        return (flash_info[0].size);