s390/ptrace: Explicitly include <linux/typecheck.h>

The psw_bits() macro makes use of typecheck() without that typecheck.h
is included. Add the missing include to avoid potential future compile
problems.

[hca@linux.ibm.com: change commit message]

Signed-off-by: Jens Remus <jremus@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
Jens Remus 2025-10-23 11:23:58 +02:00 committed by Heiko Carstens
parent 51d921a613
commit f25d952ab6

View File

@ -8,6 +8,7 @@
#define _S390_PTRACE_H
#include <linux/bits.h>
#include <linux/typecheck.h>
#include <uapi/asm/ptrace.h>
#include <asm/thread_info.h>
#include <asm/tpi.h>