From: Benjamin Gray Date: Mon, 19 Jun 2023 07:36:25 +0000 (+1000) Subject: powerpc/ptrace: Add missing include X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=81e30a5412e4bcdc9d338ffa0cf1f4b90bc63abc;p=linux.git powerpc/ptrace: Add missing include ptrace-decl.h uses user_regset_get2_fn (among other things) from regset.h. While all current users of ptrace-decl.h include regset.h before it anyway, it adds an implicit ordering dependency and breaks source tooling that tries to inspect ptrace-decl.h by itself. Signed-off-by: Benjamin Gray Reviewed-by: Russell Currey Signed-off-by: Michael Ellerman Link: https://msgid.link/20230616034846.311705-3-bgray@linux.ibm.com --- diff --git a/arch/powerpc/kernel/ptrace/ptrace-decl.h b/arch/powerpc/kernel/ptrace/ptrace-decl.h index eafe5f0f62898..463a63eb8cc72 100644 --- a/arch/powerpc/kernel/ptrace/ptrace-decl.h +++ b/arch/powerpc/kernel/ptrace/ptrace-decl.h @@ -1,5 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ +#include + /* * Set of msr bits that gdb can change on behalf of a process. */