x86/mm/32: Fix -Wmissing prototypes warnings for init.c
authorBenjamin Thiel <b.thiel@posteo.de>
Sat, 6 Jun 2020 12:37:43 +0000 (14:37 +0200)
committerBorislav Petkov <bp@suse.de>
Thu, 18 Jun 2020 16:04:00 +0000 (18:04 +0200)
commit56ce93700eb630a8d894f5a578f166888ae8cba6
treecde1a4c431a9bff25763d049c9c4ac4b6c07d58d
parent2accfa69050c2a0d6fc6106f609208b3e9622b26
x86/mm/32: Fix -Wmissing prototypes warnings for init.c

Fix:

  arch/x86/mm/init.c:503:21:
  warning: no previous prototype for ‘init_memory_mapping’ [-Wmissing-prototypes]
  unsigned long __ref init_memory_mapping(unsigned long start,

  arch/x86/mm/init.c:745:13:
  warning: no previous prototype for ‘poking_init’ [-Wmissing-prototypes]
  void __init poking_init(void)

Lift init_memory_mapping() and poking_init() out of the ifdef
CONFIG_X86_64 to make the functions visible on 32-bit too.

Signed-off-by: Benjamin Thiel <b.thiel@posteo.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20200606123743.3277-1-b.thiel@posteo.de
arch/x86/include/asm/pgtable.h