mirror of https://gitee.com/openkylin/linux.git
arm64: Remove duplicate include
"make includecheck" detected few duplicated includes in arch/arm64. This patch removes the double inclusions. Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
This commit is contained in:
parent
5c636aa015
commit
92faa7bea3
|
@ -72,7 +72,6 @@
|
||||||
#ifdef __ASSEMBLY__
|
#ifdef __ASSEMBLY__
|
||||||
|
|
||||||
#include <asm/alternative.h>
|
#include <asm/alternative.h>
|
||||||
#include <asm/cpufeature.h>
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Convert a kernel VA into a HYP VA.
|
* Convert a kernel VA into a HYP VA.
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/sysctl.h>
|
#include <linux/sysctl.h>
|
||||||
|
#include <linux/uaccess.h>
|
||||||
|
|
||||||
#include <asm/cpufeature.h>
|
#include <asm/cpufeature.h>
|
||||||
#include <asm/insn.h>
|
#include <asm/insn.h>
|
||||||
|
@ -20,8 +21,6 @@
|
||||||
#include <asm/system_misc.h>
|
#include <asm/system_misc.h>
|
||||||
#include <asm/traps.h>
|
#include <asm/traps.h>
|
||||||
#include <asm/kprobes.h>
|
#include <asm/kprobes.h>
|
||||||
#include <linux/uaccess.h>
|
|
||||||
#include <asm/cpufeature.h>
|
|
||||||
|
|
||||||
#define CREATE_TRACE_POINTS
|
#define CREATE_TRACE_POINTS
|
||||||
#include "trace-events-emulation.h"
|
#include "trace-events-emulation.h"
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
#include <linux/percpu.h>
|
#include <linux/percpu.h>
|
||||||
#include <linux/prctl.h>
|
#include <linux/prctl.h>
|
||||||
#include <linux/preempt.h>
|
#include <linux/preempt.h>
|
||||||
#include <linux/prctl.h>
|
|
||||||
#include <linux/ptrace.h>
|
#include <linux/ptrace.h>
|
||||||
#include <linux/sched/signal.h>
|
#include <linux/sched/signal.h>
|
||||||
#include <linux/sched/task_stack.h>
|
#include <linux/sched/task_stack.h>
|
||||||
|
|
|
@ -1046,8 +1046,6 @@ static const struct user_regset_view user_aarch64_view = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_COMPAT
|
#ifdef CONFIG_COMPAT
|
||||||
#include <linux/compat.h>
|
|
||||||
|
|
||||||
enum compat_regset {
|
enum compat_regset {
|
||||||
REGSET_COMPAT_GPR,
|
REGSET_COMPAT_GPR,
|
||||||
REGSET_COMPAT_VFP,
|
REGSET_COMPAT_VFP,
|
||||||
|
|
Loading…
Reference in New Issue