Skip to content

Commit 2eb5d1d

Browse files
arndbhansendc
authored andcommitted
x86: Add dummy prototype for mk_early_pgtbl_32()
'make W=1' warns about a function without a prototype in the x86-32 head code: arch/x86/kernel/head32.c:72:13: error: no previous prototype for 'mk_early_pgtbl_32' [-Werror=missing-prototypes] This is called from assembler code, so it does not actually need a prototype. I could not find an appropriate header for it, so just declare it in front of the definition to shut up the warning. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com> Link: https://lore.kernel.org/all/20230516193549.544673-6-arnd%40kernel.org
1 parent 0253b04 commit 2eb5d1d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/x86/kernel/head32.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ asmlinkage __visible void __init __noreturn i386_start_kernel(void)
6969
* to the first kernel PMD. Note the upper half of each PMD or PTE are
7070
* always zero at this stage.
7171
*/
72+
void __init mk_early_pgtbl_32(void);
7273
void __init mk_early_pgtbl_32(void)
7374
{
7475
#ifdef __pa

0 commit comments

Comments
 (0)