s390: Use system header file variant of include directive
A few include directives use the local search variant even though the files to be included aren't local. Therefore use the normal system header file variant of the include directive. Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
This commit is contained in:
parent
a702b633c0
commit
b337f6af67
|
|
@ -622,7 +622,7 @@ SYM_DATA_END(daton_psw)
|
||||||
.balign 8
|
.balign 8
|
||||||
#define SYSCALL(esame,emu) .quad __s390x_ ## esame
|
#define SYSCALL(esame,emu) .quad __s390x_ ## esame
|
||||||
SYM_DATA_START(sys_call_table)
|
SYM_DATA_START(sys_call_table)
|
||||||
#include "asm/syscall_table.h"
|
#include <asm/syscall_table.h>
|
||||||
SYM_DATA_END(sys_call_table)
|
SYM_DATA_END(sys_call_table)
|
||||||
#undef SYSCALL
|
#undef SYSCALL
|
||||||
|
|
||||||
|
|
@ -630,7 +630,7 @@ SYM_DATA_END(sys_call_table)
|
||||||
|
|
||||||
#define SYSCALL(esame,emu) .quad __s390_ ## emu
|
#define SYSCALL(esame,emu) .quad __s390_ ## emu
|
||||||
SYM_DATA_START(sys_call_table_emu)
|
SYM_DATA_START(sys_call_table_emu)
|
||||||
#include "asm/syscall_table.h"
|
#include <asm/syscall_table.h>
|
||||||
SYM_DATA_END(sys_call_table_emu)
|
SYM_DATA_END(sys_call_table_emu)
|
||||||
#undef SYSCALL
|
#undef SYSCALL
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
* Martin Schwidefsky (schwidefsky@de.ibm.com)
|
* Martin Schwidefsky (schwidefsky@de.ibm.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "asm/ptrace.h"
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
#include <linux/sched/task_stack.h>
|
#include <linux/sched/task_stack.h>
|
||||||
|
|
@ -33,6 +32,7 @@
|
||||||
#include <asm/runtime_instr.h>
|
#include <asm/runtime_instr.h>
|
||||||
#include <asm/facility.h>
|
#include <asm/facility.h>
|
||||||
#include <asm/machine.h>
|
#include <asm/machine.h>
|
||||||
|
#include <asm/ptrace.h>
|
||||||
#include <asm/fpu.h>
|
#include <asm/fpu.h>
|
||||||
|
|
||||||
#include "entry.h"
|
#include "entry.h"
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@
|
||||||
* 'Traps.c' handles hardware traps and faults after we have saved some
|
* 'Traps.c' handles hardware traps and faults after we have saved some
|
||||||
* state in 'asm.s'.
|
* state in 'asm.s'.
|
||||||
*/
|
*/
|
||||||
#include "asm/irqflags.h"
|
|
||||||
#include "asm/ptrace.h"
|
|
||||||
#include <linux/cpufeature.h>
|
#include <linux/cpufeature.h>
|
||||||
#include <linux/kprobes.h>
|
#include <linux/kprobes.h>
|
||||||
#include <linux/kdebug.h>
|
#include <linux/kdebug.h>
|
||||||
|
|
@ -30,6 +28,8 @@
|
||||||
#include <linux/entry-common.h>
|
#include <linux/entry-common.h>
|
||||||
#include <linux/kmsan.h>
|
#include <linux/kmsan.h>
|
||||||
#include <asm/asm-extable.h>
|
#include <asm/asm-extable.h>
|
||||||
|
#include <asm/irqflags.h>
|
||||||
|
#include <asm/ptrace.h>
|
||||||
#include <asm/vtime.h>
|
#include <asm/vtime.h>
|
||||||
#include <asm/fpu.h>
|
#include <asm/fpu.h>
|
||||||
#include <asm/fault.h>
|
#include <asm/fault.h>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue