diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /cpu/mcf523x/interrupts.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/mcf523x/interrupts.c')
| -rw-r--r-- | cpu/mcf523x/interrupts.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/cpu/mcf523x/interrupts.c b/cpu/mcf523x/interrupts.c index 125c53b1b..db5ccdf6d 100644 --- a/cpu/mcf523x/interrupts.c +++ b/cpu/mcf523x/interrupts.c @@ -28,7 +28,7 @@  int interrupt_init(void)  { -	volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE); +	volatile int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);  	/* Make sure all interrupts are disabled */  	intp->imrl0 |= 0x1; @@ -40,10 +40,10 @@ int interrupt_init(void)  #if defined(CONFIG_MCFTMR)  void dtimer_intr_setup(void)  { -	volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE); +	volatile int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE); -	intp->icr0[CFG_TMRINTR_NO] = CFG_TMRINTR_PRI; +	intp->icr0[CONFIG_SYS_TMRINTR_NO] = CONFIG_SYS_TMRINTR_PRI;  	intp->imrl0 &= ~INTC_IPRL_INT0; -	intp->imrl0 &= ~CFG_TMRINTR_MASK; +	intp->imrl0 &= ~CONFIG_SYS_TMRINTR_MASK;  }  #endif |