Commit 487c719c00b6a4bdb24a77337897d46dfe5131f6

Authored by Geert Uytterhoeven
Committed by Linus Torvalds
1 parent 8782171e58

h8300/time: add missing #include <asm/irq_regs.h>

Fix the build error:

  arch/h8300/kernel/time.c: In function 'h8300_timer_tick':
  arch/h8300/kernel/time.c:39:2: error: implicit declaration of function 'get_irq_regs' [-Werror=implicit-function-declaration]
  arch/h8300/kernel/time.c:39:42: error: invalid type argument of '->' (have 'int')

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Tony Breeds <tony@bakeyournoodle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

arch/h8300/kernel/time.c
... ... @@ -27,6 +27,7 @@
27 27 #include <linux/profile.h>
28 28  
29 29 #include <asm/io.h>
  30 +#include <asm/irq_regs.h>
30 31 #include <asm/timer.h>
31 32  
32 33 #define TICK_SIZE (tick_nsec / 1000)