diff options
author | Paul Mundt <lethal@linux-sh.org> | 2012-05-24 13:03:20 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-05-24 13:03:20 +0900 |
commit | 936c163ab260b83b10d434715bf6bcd43b99d620 (patch) | |
tree | 8c48f1a8a9fc9aa8317946865214d626b8ecbdff /arch/sh | |
parent | f9369910a6225b8d4892c3f20ae740a711cd5ace (diff) | |
download | linux-3.10-936c163ab260b83b10d434715bf6bcd43b99d620.tar.gz linux-3.10-936c163ab260b83b10d434715bf6bcd43b99d620.tar.bz2 linux-3.10-936c163ab260b83b10d434715bf6bcd43b99d620.zip |
sh: arch/sh/kernel/process.c needs asm/fpu.h for unlazy_fpu().
Linus tried to fix up sh fallout from the x86 fpu state cleanup merge and
failed. Add the missing include to get it building again.
CC arch/sh/kernel/process.o
arch/sh/kernel/process.c: In function 'arch_dup_task_struct':
arch/sh/kernel/process.c:23:2: error: implicit declaration of function 'unlazy_fpu'
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/process.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/kernel/process.c b/arch/sh/kernel/process.c index 9b7a459a461..055d91b7030 100644 --- a/arch/sh/kernel/process.c +++ b/arch/sh/kernel/process.c @@ -4,6 +4,7 @@ #include <linux/sched.h> #include <linux/export.h> #include <linux/stackprotector.h> +#include <asm/fpu.h> struct kmem_cache *task_xstate_cachep = NULL; unsigned int xstate_size; |