diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2024-10-09 16:18:25 +1100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2024-10-29 23:01:05 +1100 |
commit | 3c9670df7f7e871f0d2c2208d2ce79f6cfbca0f6 (patch) | |
tree | 372cfa5089c58dcde8f45b0341099ed7a0383f43 /arch/powerpc/platforms/52xx | |
parent | 5e296fc37e1afa3fb38b886fe2bf7737777d0f61 (diff) |
powerpc/machdep: Drop include of seq_file.h
Drop the include of seq_file.h in machdep.h, replace it with a forward
declaration of struct seq_file, which is all that's required.
Add direct includes of seq_file.h to some files that were getting
seq_file.h via machdep.h.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://patch.msgid.link/20241009051826.132805-1-mpe@ellerman.id.au
Diffstat (limited to 'arch/powerpc/platforms/52xx')
-rw-r--r-- | arch/powerpc/platforms/52xx/efika.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/52xx/efika.c b/arch/powerpc/platforms/52xx/efika.c index 37a67120f257..a7172f9ebaad 100644 --- a/arch/powerpc/platforms/52xx/efika.c +++ b/arch/powerpc/platforms/52xx/efika.c @@ -13,6 +13,7 @@ #include <generated/utsrelease.h> #include <linux/pci.h> #include <linux/of.h> +#include <linux/seq_file.h> #include <asm/dma.h> #include <asm/time.h> #include <asm/machdep.h> |