]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
AVR32: fix timer_init() function
authorSven Schnelle <svens@stackframe.org>
Tue, 4 Oct 2011 19:53:32 +0000 (21:53 +0200)
committerWolfgang Denk <wd@denx.de>
Tue, 20 Dec 2011 22:10:04 +0000 (23:10 +0100)
timer_init() now returns an int (the error code) instead of void.
This makes compilation fail with:

interrupts.c:111: error: conflicting types for 'timer_init'
/home/svens/u-boot/u-boot/include/common.h:246: error: previous
declaration of 'timer_init' was here
make[1]: *** [interrupts.o] Error 1

Signed-off-by: Sven Schnelle <svens@stackframe.org>
Acked-by: Andreas Bießmann <andreas.devel@googlemail.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
arch/avr32/cpu/interrupts.c

index 6681e13b9393d604584f86542526d9d4a99b7639..49a00f1c8ca7e4b6e57edb32844dc1f348c0dac1 100644 (file)
@@ -107,7 +107,7 @@ static int set_interrupt_handler(unsigned int nr, void (*handler)(void),
        return 0;
 }
 
-void timer_init(void)
+int timer_init(void)
 {
        extern void timer_interrupt_handler(void);
        u64 tmp;
@@ -120,8 +120,9 @@ void timer_init(void)
        tb_factor = (u32)tmp;
 
        if (set_interrupt_handler(0, &timer_interrupt_handler, 3))
-               return;
+               return -EINVAL;
 
        /* For all practical purposes, this gives us an overflow interrupt */
        sysreg_write(COMPARE, 0xffffffff);
+       return 0;
 }