diff options
author | Arnd Bergmann <[email protected]> | 2023-05-16 21:35:36 +0200 |
---|---|---|
committer | Dave Hansen <[email protected]> | 2023-05-18 11:56:18 -0700 |
commit | c9664839305dfaccd098b1606c197b0eb21056dc (patch) | |
tree | 81a8da5503dabb3ae439348cd58d54ff51be5478 /lib/mpi/mpiutil.c | |
parent | 16db7e9c6e974a0935494cd31179c819d4cbf86e (diff) |
x86: Avoid missing-prototype warnings for doublefault code
Two functions in the 32-bit doublefault code are lacking a prototype:
arch/x86/kernel/doublefault_32.c:23:36: error: no previous prototype for 'doublefault_shim' [-Werror=missing-prototypes]
23 | asmlinkage noinstr void __noreturn doublefault_shim(void)
| ^~~~~~~~~~~~~~~~
arch/x86/kernel/doublefault_32.c:114:6: error: no previous prototype for 'doublefault_init_cpu_tss' [-Werror=missing-prototypes]
114 | void doublefault_init_cpu_tss(void)
The first one is only called from assembler, while the second one is
declared in doublefault.h, but this file is not included.
Include the header file and add the other declaration there as well.
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Dave Hansen <[email protected]>
Reviewed-by: Alexander Lobakin <[email protected]>
Link: https://lore.kernel.org/all/20230516193549.544673-8-arnd%40kernel.org
Diffstat (limited to 'lib/mpi/mpiutil.c')
0 files changed, 0 insertions, 0 deletions