global: Move remaining CONFIG_SYS_* to CFG_SYS_*
[pandora-u-boot.git] / arch / arm / cpu / armv7m / systick-timer.c
index 556eaf8..c30af4f 100644 (file)
@@ -18,7 +18,7 @@
  * The number of reference clock ticks that correspond to 10ms is normally
  * defined in the SysTick Calibration register's TENMS field. However, on some
  * devices this is wrong, so this driver allows the clock rate to be defined
- * using CONFIG_SYS_HZ_CLOCK.
+ * using CFG_SYS_HZ_CLOCK.
  */
 
 #include <common.h>
@@ -76,10 +76,10 @@ int timer_init(void)
 
        /*
         * If the TENMS field is inexact or wrong, specify the clock rate using
-        * CONFIG_SYS_HZ_CLOCK.
+        * CFG_SYS_HZ_CLOCK.
         */
-#if defined(CONFIG_SYS_HZ_CLOCK)
-       gd->arch.timer_rate_hz = CONFIG_SYS_HZ_CLOCK;
+#if defined(CFG_SYS_HZ_CLOCK)
+       gd->arch.timer_rate_hz = CFG_SYS_HZ_CLOCK;
 #else
        gd->arch.timer_rate_hz = (cal & SYSTICK_CAL_TENMS_MASK) * 100;
 #endif