Skip to content

Commit b337f6a

Browse files
hcahcaVasily Gorbik
authored andcommitted
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 <[email protected]> Signed-off-by: Vasily Gorbik <[email protected]>
1 parent a702b63 commit b337f6a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

arch/s390/kernel/entry.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,15 +622,15 @@ SYM_DATA_END(daton_psw)
622622
.balign 8
623623
#define SYSCALL(esame,emu) .quad __s390x_ ## esame
624624
SYM_DATA_START(sys_call_table)
625-
#include "asm/syscall_table.h"
625+
#include <asm/syscall_table.h>
626626
SYM_DATA_END(sys_call_table)
627627
#undef SYSCALL
628628

629629
#ifdef CONFIG_COMPAT
630630

631631
#define SYSCALL(esame,emu) .quad __s390_ ## emu
632632
SYM_DATA_START(sys_call_table_emu)
633-
#include "asm/syscall_table.h"
633+
#include <asm/syscall_table.h>
634634
SYM_DATA_END(sys_call_table_emu)
635635
#undef SYSCALL
636636
#endif

arch/s390/kernel/ptrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Martin Schwidefsky ([email protected])
88
*/
99

10-
#include "asm/ptrace.h"
1110
#include <linux/kernel.h>
1211
#include <linux/sched.h>
1312
#include <linux/sched/task_stack.h>
@@ -33,6 +32,7 @@
3332
#include <asm/runtime_instr.h>
3433
#include <asm/facility.h>
3534
#include <asm/machine.h>
35+
#include <asm/ptrace.h>
3636
#include <asm/fpu.h>
3737

3838
#include "entry.h"

arch/s390/kernel/traps.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
* 'Traps.c' handles hardware traps and faults after we have saved some
1414
* state in 'asm.s'.
1515
*/
16-
#include "asm/irqflags.h"
17-
#include "asm/ptrace.h"
1816
#include <linux/cpufeature.h>
1917
#include <linux/kprobes.h>
2018
#include <linux/kdebug.h>
@@ -30,6 +28,8 @@
3028
#include <linux/entry-common.h>
3129
#include <linux/kmsan.h>
3230
#include <asm/asm-extable.h>
31+
#include <asm/irqflags.h>
32+
#include <asm/ptrace.h>
3333
#include <asm/vtime.h>
3434
#include <asm/fpu.h>
3535
#include <asm/fault.h>

0 commit comments

Comments
 (0)