aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeert Uytterhoeven <[email protected]>2012-07-11 14:02:23 -0700
committerLinus Torvalds <[email protected]>2012-07-11 16:04:45 -0700
commit487c719c00b6a4bdb24a77337897d46dfe5131f6 (patch)
tree9bb33c5a02ff5ee71d6caa1ce0dde4bb5f898afa
parent8782171e5838480445ef5b3fcea1358e599fe4a2 (diff)
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 <[email protected]> Cc: Yoshinori Sato <[email protected]> Cc: Tony Breeds <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--arch/h8300/kernel/time.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/h8300/kernel/time.c b/arch/h8300/kernel/time.c
index 32263a138aa6..e0f74191d553 100644
--- a/arch/h8300/kernel/time.c
+++ b/arch/h8300/kernel/time.c
@@ -27,6 +27,7 @@
#include <linux/profile.h>
#include <asm/io.h>
+#include <asm/irq_regs.h>
#include <asm/timer.h>
#define TICK_SIZE (tick_nsec / 1000)