]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
s390: Use system header file variant of include directive
authorHeiko Carstens <hca@linux.ibm.com>
Tue, 25 Feb 2025 08:47:34 +0000 (09:47 +0100)
committerVasily Gorbik <gor@linux.ibm.com>
Tue, 4 Mar 2025 16:18:08 +0000 (17:18 +0100)
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>
arch/s390/kernel/entry.S
arch/s390/kernel/ptrace.c
arch/s390/kernel/traps.c

index c328e05b584cac59f353bd6a6b605660ae54164b..ea4ddd37ea5a20b8925bad023aca1f6476585eb5 100644 (file)
@@ -622,7 +622,7 @@ SYM_DATA_END(daton_psw)
        .balign 8
 #define SYSCALL(esame,emu)     .quad __s390x_ ## esame
 SYM_DATA_START(sys_call_table)
-#include "asm/syscall_table.h"
+#include <asm/syscall_table.h>
 SYM_DATA_END(sys_call_table)
 #undef SYSCALL
 
@@ -630,7 +630,7 @@ SYM_DATA_END(sys_call_table)
 
 #define SYSCALL(esame,emu)     .quad __s390_ ## 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)
 #undef SYSCALL
 #endif
index e2acbbadc75e309df3e21071ac78495980fcd03d..6f2ae0be22982573721769741548592424ab7c35 100644 (file)
@@ -7,7 +7,6 @@
  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
  */
 
-#include "asm/ptrace.h"
 #include <linux/kernel.h>
 #include <linux/sched.h>
 #include <linux/sched/task_stack.h>
@@ -33,6 +32,7 @@
 #include <asm/runtime_instr.h>
 #include <asm/facility.h>
 #include <asm/machine.h>
+#include <asm/ptrace.h>
 #include <asm/fpu.h>
 
 #include "entry.h"
index a27053a405a7444633ac7655bd378eeee0c8e7d5..6db2c14665314a5305e94bee71218ef5854d1fc6 100644 (file)
@@ -13,8 +13,6 @@
  * 'Traps.c' handles hardware traps and faults after we have saved some
  * state in 'asm.s'.
  */
-#include "asm/irqflags.h"
-#include "asm/ptrace.h"
 #include <linux/cpufeature.h>
 #include <linux/kprobes.h>
 #include <linux/kdebug.h>
@@ -30,6 +28,8 @@
 #include <linux/entry-common.h>
 #include <linux/kmsan.h>
 #include <asm/asm-extable.h>
+#include <asm/irqflags.h>
+#include <asm/ptrace.h>
 #include <asm/vtime.h>
 #include <asm/fpu.h>
 #include <asm/fault.h>