浏览代码

Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c

Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew 17 年之前
父节点
当前提交
99c03c175d
共有 2 个文件被更改,包括 3 次插入1 次删除
  1. 1 1
      include/asm-m68k/immap.h
  2. 2 0
      lib_m68k/time.c

+ 1 - 1
include/asm-m68k/immap.h

@@ -41,7 +41,7 @@
 #define CFG_TMRINTR_NO		(INT0_HI_DTMR1)
 #define CFG_TMRINTR_MASK	(INTC_IPRH_INT33)
 #define CFG_TMRINTR_PRI		(6)
-#define CFG_TIMER_PRESCALER	(((CFG_CLK / 1000000) - 1) << 8)
+#define CFG_TIMER_PRESCALER	(((gd->bus_clk / 1000000) - 1) << 8)
 #endif
 
 #ifdef CONFIG_MCFPIT

+ 2 - 0
lib_m68k/time.c

@@ -48,6 +48,8 @@
 #include <asm/immap_5249.h>
 #endif
 
+DECLARE_GLOBAL_DATA_PTR;
+
 static ulong timestamp;
 #if defined(CONFIG_M5282) || defined(CONFIG_M5271)
 static unsigned short lastinc;