[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-1e6277de3a23373b89e0affc3d179f2173b857a4@git.kernel.org>
Date: Thu, 28 May 2015 02:32:58 -0700
From: tip-bot for Jan Beulich <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: bp@...en8.de, hpa@...or.com, torvalds@...ux-foundation.org,
JBeulich@...e.com, linux-kernel@...r.kernel.org,
tglx@...utronix.de, jbeulich@...e.com, mingo@...nel.org,
peterz@...radead.org
Subject: [tip:x86/mm] x86/mm: Mark arch_ioremap_p{m,u}d_supported() __init
Commit-ID: 1e6277de3a23373b89e0affc3d179f2173b857a4
Gitweb: http://git.kernel.org/tip/1e6277de3a23373b89e0affc3d179f2173b857a4
Author: Jan Beulich <JBeulich@...e.com>
AuthorDate: Thu, 28 May 2015 09:29:27 +0100
Committer: Ingo Molnar <mingo@...nel.org>
CommitDate: Thu, 28 May 2015 11:08:38 +0200
x86/mm: Mark arch_ioremap_p{m,u}d_supported() __init
... as their only caller is.
Signed-off-by: Jan Beulich <jbeulich@...e.com>
Cc: Borislav Petkov <bp@...en8.de>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Thomas Gleixner <tglx@...utronix.de>
Link: http://lkml.kernel.org/r/5566EE07020000780007E683@mail.emea.novell.com
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
arch/x86/mm/ioremap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c
index 82d63ed..b0da358 100644
--- a/arch/x86/mm/ioremap.c
+++ b/arch/x86/mm/ioremap.c
@@ -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;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists