Commit 1e6277de authored by Jan Beulich's avatar Jan Beulich Committed by Ingo Molnar

x86/mm: Mark arch_ioremap_p{m,u}d_supported() __init

... as their only caller is.
Signed-off-by: default avatarJan Beulich <jbeulich@suse.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/5566EE07020000780007E683@mail.emea.novell.comSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent fbe7193a
......@@ -365,7 +365,7 @@ void iounmap(volatile void __iomem *addr)
}
EXPORT_SYMBOL(iounmap);
int arch_ioremap_pud_supported(void)
int __init arch_ioremap_pud_supported(void)
{
#ifdef CONFIG_X86_64
return cpu_has_gbpages;
......@@ -374,7 +374,7 @@ int arch_ioremap_pud_supported(void)
#endif
}
int arch_ioremap_pmd_supported(void)
int __init arch_ioremap_pmd_supported(void)
{
return cpu_has_pse;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment