diff options
author | Cédric Le Goater <[email protected]> | 2021-01-04 15:31:57 +0100 |
---|---|---|
committer | Michael Ellerman <[email protected]> | 2021-01-30 11:39:30 +1100 |
commit | 1f55aefea3c1431f662aafa02ef9ac18d8880751 (patch) | |
tree | 37a0a7634a89a603b3d94680b1723058abc5fb47 | |
parent | 11f9c1d2fb497f69f83d4fab6fb7fc8a6884eded (diff) |
powerpc/mm: Declare preload_new_slb_context() prototype
It fixes this W=1 compile error :
../arch/powerpc/mm/book3s64/slb.c:380:6: error: no previous prototype for ‘preload_new_slb_context’ [-Werror=missing-prototypes]
380 | void preload_new_slb_context(unsigned long start, unsigned long sp)
| ^~~~~~~~~~~~~~~~~~~~~~~
Signed-off-by: Cédric Le Goater <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | arch/powerpc/include/asm/book3s/64/mmu-hash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/book3s/64/mmu-hash.h b/arch/powerpc/include/asm/book3s/64/mmu-hash.h index 2bffc7a0fdb8..f911bdb68d8b 100644 --- a/arch/powerpc/include/asm/book3s/64/mmu-hash.h +++ b/arch/powerpc/include/asm/book3s/64/mmu-hash.h @@ -525,6 +525,7 @@ void slb_dump_contents(struct slb_entry *slb_ptr); extern void slb_vmalloc_update(void); extern void slb_set_size(u16 size); +void preload_new_slb_context(unsigned long start, unsigned long sp); #endif /* __ASSEMBLY__ */ /* |