diff options
author | Cédric Le Goater <clg@kaod.org> | 2021-01-04 15:31:59 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-01-30 11:39:30 +1100 |
commit | 1429ff51480fe5a21a3d17158d259a4b4b04808f (patch) | |
tree | 2deb4ce9dee0da788707cc1630e8c77ff21c5a6d | |
parent | 94b87d72fc852b6995702d74541136a65f88624a (diff) | |
download | lwn-1429ff51480fe5a21a3d17158d259a4b4b04808f.tar.gz lwn-1429ff51480fe5a21a3d17158d259a4b4b04808f.zip |
powerpc/mm: Declare arch_report_meminfo() prototype.
It fixes this W=1 compile error :
../arch/powerpc/mm/book3s64/pgtable.c:411:6: error: no previous prototype for ‘arch_report_meminfo’ [-Werror=missing-prototypes]
411 | void arch_report_meminfo(struct seq_file *m)
| ^~~~~~~~~~~~~~~~~~~
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210104143206.695198-17-clg@kaod.org
-rw-r--r-- | arch/powerpc/include/asm/pgtable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/pgtable.h b/arch/powerpc/include/asm/pgtable.h index f7613f43c9cf..4eed82172e33 100644 --- a/arch/powerpc/include/asm/pgtable.h +++ b/arch/powerpc/include/asm/pgtable.h @@ -162,6 +162,9 @@ static inline bool is_ioremap_addr(const void *x) return addr >= IOREMAP_BASE && addr < IOREMAP_END; } + +struct seq_file; +void arch_report_meminfo(struct seq_file *m); #endif /* CONFIG_PPC64 */ #endif /* __ASSEMBLY__ */ |