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>
master
TsiChungLiew 18 years ago committed by Stefan Roese
parent 8d1d66af54
commit 99c03c175d
  1. 2
      include/asm-m68k/immap.h
  2. 2
      lib_m68k/time.c

@ -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

@ -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;

Loading…
Cancel
Save