Commit eeda0084419741016d32019bf535a94dbd5628e7

Authored by Jesper Nilsson
1 parent f89412ac45

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>

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

arch/cris/arch-v32/kernel/time.c
... ... @@ -14,6 +14,7 @@
14 14 #include <linux/init.h>
15 15 #include <linux/threads.h>
16 16 #include <linux/cpufreq.h>
  17 +#include <linux/mm.h>
17 18 #include <asm/types.h>
18 19 #include <asm/signal.h>
19 20 #include <asm/io.h>