Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent fbe7193a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}