The patch titled avr32: missing conversion of do_timer() argument has been added to the -mm tree. Its filename is simplify-update_times-avoid-jiffies-jiffies_64-aliasing-problem-avr32-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: avr32: missing conversion of do_timer() argument From: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> do_timer() take "ticks" argument instead of "regs". Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Cc: Haavard Skinnemoen <hskinnemoen@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/avr32/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/avr32/kernel/time.c~simplify-update_times-avoid-jiffies-jiffies_64-aliasing-problem-avr32-fix arch/avr32/kernel/time.c --- a/arch/avr32/kernel/time.c~simplify-update_times-avoid-jiffies-jiffies_64-aliasing-problem-avr32-fix +++ a/arch/avr32/kernel/time.c @@ -148,7 +148,7 @@ timer_interrupt(int irq, void *dev_id, s * Call the generic timer interrupt handler */ write_seqlock(&xtime_lock); - do_timer(regs); + do_timer(1); write_sequnlock(&xtime_lock); /* _ Patches currently in -mm which might be from anemo@xxxxxxxxxxxxx are simplify-update_times-avoid-jiffies-jiffies_64-aliasing-problem.patch simplify-update_times-avoid-jiffies-jiffies_64-aliasing-problem-avr32-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html