mm,mm_init: Mark set_high_memory as __init

set_high_memory() touches arch_zone_lowest_possible_pfn which is
marked as __initdata, which creates a section mismatch.
Since the only user of the function is free_area_init() which is also marked
as __init, mark set_high_memory() as __init as well.

Signed-off-by: Oscar Salvador <osalvador@suse.de>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202505060901.Qcs06UoB-lkp@intel.com/
Link: https://lore.kernel.org/r/20250506111012.108743-1-osalvador@suse.de
Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org>

authored by Oscar Salvador and committed by Mike Rapoport (Microsoft) 42e31f0d 92a09c47

+1 -1
+1 -1
mm/mm_init.c
··· 1786 1786 return IS_ENABLED(CONFIG_ARC) && !IS_ENABLED(CONFIG_ARC_HAS_PAE40); 1787 1787 } 1788 1788 1789 - static void set_high_memory(void) 1789 + static void __init set_high_memory(void) 1790 1790 { 1791 1791 phys_addr_t highmem = memblock_end_of_DRAM(); 1792 1792