diff options
author | Matt Redfearn <[email protected]> | 2017-03-31 11:51:33 +0100 |
---|---|---|
committer | Ralf Baechle <[email protected]> | 2017-04-12 17:02:04 +0200 |
commit | ec62a3bd84df90a19b7d59d032fa807bbfea7cbb (patch) | |
tree | 8431ddfcbaf06dcc4cc7c9327dcf30cdc06363da | |
parent | c46f59e90226fa5bfcc83650edebe84ae47d454b (diff) |
MIPS: KASLR: Add missing header files
After the split of linux/sched.h, KASLR stopped building.
Fix this by including the correct header file for init_thread_union
Signed-off-by: Matt Redfearn <[email protected]>
Cc: James Hogan <[email protected]>
Cc: Marcin Nowakowski <[email protected]>
Cc: Steven J. Hill <[email protected]>
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/15849/
Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r-- | arch/mips/kernel/relocate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/relocate.c b/arch/mips/kernel/relocate.c index 9103bebc9a8e..2d1a0c438771 100644 --- a/arch/mips/kernel/relocate.c +++ b/arch/mips/kernel/relocate.c @@ -18,7 +18,7 @@ #include <linux/kernel.h> #include <linux/libfdt.h> #include <linux/of_fdt.h> -#include <linux/sched.h> +#include <linux/sched/task.h> #include <linux/start_kernel.h> #include <linux/string.h> #include <linux/printk.h> |