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/leon2/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/leon2/interrupts.c')
| -rw-r--r-- | cpu/leon2/interrupts.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/cpu/leon2/interrupts.c b/cpu/leon2/interrupts.c index 35b375c78..9b0da963a 100644 --- a/cpu/leon2/interrupts.c +++ b/cpu/leon2/interrupts.c @@ -98,8 +98,8 @@ static void leon2_ic_enable(unsigned int irq)  void handler_irq(int irq, struct pt_regs *regs)  {  	if (irq_handlers[irq].handler) { -		if (((unsigned int)irq_handlers[irq].handler > CFG_RAM_END) || -		    ((unsigned int)irq_handlers[irq].handler < CFG_RAM_BASE) +		if (((unsigned int)irq_handlers[irq].handler > CONFIG_SYS_RAM_END) || +		    ((unsigned int)irq_handlers[irq].handler < CONFIG_SYS_RAM_BASE)  		    ) {  			printf("handler_irq: bad handler: %x, irq number %d\n",  			       (unsigned int)irq_handlers[irq].handler, irq); @@ -163,8 +163,8 @@ void irq_install_handler(int irq, interrupt_handler_t * handler, void *arg)  		printf("irq_install_handler: 0x%08lx replacing 0x%08lx\n",  		       (ulong) handler, (ulong) irq_handlers[irq].handler); -	if (((unsigned int)handler > CFG_RAM_END) || -	    ((unsigned int)handler < CFG_RAM_BASE) +	if (((unsigned int)handler > CONFIG_SYS_RAM_END) || +	    ((unsigned int)handler < CONFIG_SYS_RAM_BASE)  	    ) {  		printf("irq_install_handler: bad handler: %x, irq number %d\n",  		       (unsigned int)handler, irq); |