diff options
author | Andreas Bießmann <biessmann@corscience.de> | 2010-11-04 23:15:31 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-05-18 07:56:50 +0200 |
commit | f4278b716c2925b4dcf18b94f0ff932d4736cd5d (patch) | |
tree | 53068e409b65794be28d2fa4deb6ef959b632de0 /arch/avr32/cpu/interrupts.c | |
parent | 5d73bc7af75b004d4eb343572e3ff5bc5727a048 (diff) | |
download | u-boot-imx-f4278b716c2925b4dcf18b94f0ff932d4736cd5d.zip u-boot-imx-f4278b716c2925b4dcf18b94f0ff932d4736cd5d.tar.gz u-boot-imx-f4278b716c2925b4dcf18b94f0ff932d4736cd5d.tar.bz2 |
avr32: fixup definitions to ATMEL_BASE_xxx
Signed-off-by: Andreas Bießmann <biessmann@corscience.de>
Diffstat (limited to 'arch/avr32/cpu/interrupts.c')
-rw-r--r-- | arch/avr32/cpu/interrupts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/cpu/interrupts.c b/arch/avr32/cpu/interrupts.c index c751981..c6ea435 100644 --- a/arch/avr32/cpu/interrupts.c +++ b/arch/avr32/cpu/interrupts.c @@ -125,7 +125,7 @@ static int set_interrupt_handler(unsigned int nr, void (*handler)(void), intpr = (handler_addr & HANDLER_MASK); intpr |= (priority & INTLEV_MASK) << INTLEV_SHIFT; - writel(intpr, (void *)INTC_BASE + 4 * nr); + writel(intpr, (void *)ATMEL_BASE_INTC + 4 * nr); return 0; } |