diff options
author | zhong jiang <[email protected]> | 2018-11-02 15:48:35 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2018-11-03 10:09:37 -0700 |
commit | 3383b36040522505546cb112f0a543a5998edfb6 (patch) | |
tree | b81e008392d3e2b6acb904e5274f10c809b7e0ed | |
parent | 89c83fb539f95491be80cdd5158e6f0ce329e317 (diff) |
kernel/kexec_file.c: remove some duplicated includes
We include kexec.h and slab.h twice in kexec_file.c. It's unnecessary.
hence just remove them.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: zhong jiang <[email protected]>
Reviewed-by: Bhupesh Sharma <[email protected]>
Reviewed-by: Andrew Morton <[email protected]>
Acked-by: Baoquan He <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | kernel/kexec_file.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/kexec_file.c b/kernel/kexec_file.c index c6a3b6851372..35cf0ad29718 100644 --- a/kernel/kexec_file.c +++ b/kernel/kexec_file.c @@ -25,8 +25,6 @@ #include <linux/elf.h> #include <linux/elfcore.h> #include <linux/kernel.h> -#include <linux/kexec.h> -#include <linux/slab.h> #include <linux/syscalls.h> #include <linux/vmalloc.h> #include "kexec_internal.h" |