diff options
author | Deyan Wang <wonder_rock@126.com> | 2022-02-14 13:02:50 +0100 |
---|---|---|
committer | Guo Ren <guoren@linux.alibaba.com> | 2022-04-08 09:05:23 +0200 |
commit | cfb24463a53edeb388f3563e166ad7f9591dad3d (patch) | |
tree | 74e7e7956a88c82c3d7421e26760c5e4c5331b74 /arch/csky/kernel/process.c | |
parent | csky: patch_text: Fixup last cpu should be master (diff) | |
download | linux-cfb24463a53edeb388f3563e166ad7f9591dad3d.tar.xz linux-cfb24463a53edeb388f3563e166ad7f9591dad3d.zip |
csky: Fix versioncheck warnings
$make versioncheck
arch/csky/include/asm/io.h: 8 linux/version.h not needed.
arch/csky/kernel/process.c: 5 linux/version.h not needed.
arch/csky/mm/dma-mapping.c: 12 linux/version.h not needed.
comments from Randy:
The patch makes sense but these are not compile warnings.
They come from scripts/checkversion.pl, which can be called
by 'make versioncheck', so I suppose that something in your
build system is running 'make versioncheck'.
Signed-off-by: Deyan Wang <wonder_rock@126.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Signed-off-by: Guo Ren <guoren@kernel.org>
Diffstat (limited to 'arch/csky/kernel/process.c')
-rw-r--r-- | arch/csky/kernel/process.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/csky/kernel/process.c b/arch/csky/kernel/process.c index 3d0ca22cd0e2..5de04707aa07 100644 --- a/arch/csky/kernel/process.c +++ b/arch/csky/kernel/process.c @@ -2,7 +2,6 @@ // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. #include <linux/module.h> -#include <linux/version.h> #include <linux/sched.h> #include <linux/sched/task_stack.h> #include <linux/sched/debug.h> |