diff options
author | Jesper Nilsson <jespern@axis.com> | 2014-09-30 13:34:10 (GMT) |
---|---|---|
committer | Jesper Nilsson <jespern@axis.com> | 2014-12-19 23:00:57 (GMT) |
commit | eeda0084419741016d32019bf535a94dbd5628e7 (patch) | |
tree | 8e7f93590c77ce92006809525b794f2c06863e08 | |
parent | f89412ac45c68ff28b83f88c3789bc5d6cf97c8e (diff) | |
download | linux-eeda0084419741016d32019bf535a94dbd5628e7.tar.xz |
CRISv32: Add missing include for mm.h
Fixes the following compile error.
arch/cris/arch-v32/kernel/time.c: In function 'reset_watchdog':
arch/cris/arch-v32/kernel/time.c:121:2:
error: implicit declaration of function 'global_page_state'
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
-rw-r--r-- | arch/cris/arch-v32/kernel/time.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/cris/arch-v32/kernel/time.c b/arch/cris/arch-v32/kernel/time.c index ee66866..73745ce 100644 --- a/arch/cris/arch-v32/kernel/time.c +++ b/arch/cris/arch-v32/kernel/time.c @@ -14,6 +14,7 @@ #include <linux/init.h> #include <linux/threads.h> #include <linux/cpufreq.h> +#include <linux/mm.h> #include <asm/types.h> #include <asm/signal.h> #include <asm/io.h> |