Message ID | 20181126150900.32235-1-tiny.windzz@gmail.com |
---|---|
State | In Next |
Commit | 83fb72f32001fd461c410a70c3ffbf9814c7997a |
Headers | show |
Series |
|
Related | show |
diff --git a/kernel/signal.c b/kernel/signal.c index 9a32bc2088c9..b319f06e23f7 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -19,8 +19,6 @@ #include <linux/sched/task.h> #include <linux/sched/task_stack.h> #include <linux/sched/cputime.h> -#include <linux/fs.h> -#include <linux/tty.h> #include <linux/binfmts.h> #include <linux/coredump.h> #include <linux/security.h>
tty.h and fs.h are included twice.It's unnecessary. hence just remove them. Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> --- kernel/signal.c | 2 -- 1 file changed, 2 deletions(-)