aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mm/idmap.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-09-16 15:41:43 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2014-09-26 09:39:53 -0400
commit8b521cb2947d8811b4cf7fc6a7a6ebde35218243 (patch)
tree2df73327f764aafa5447ce599489b578d73f9b04 /arch/arm/mm/idmap.c
parent9f9ec08cf9cb8e8411b1d400d5c8d99d46c5c22b (diff)
ARM: 8152/1: Convert pr_warning to pr_warn
Use the more common pr_warn. Other miscellanea: o Coalesce formats o Realign arguments Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/idmap.c')
-rw-r--r--arch/arm/mm/idmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/idmap.c b/arch/arm/mm/idmap.c
index c447ec70e868..e7a81cebbb2e 100644
--- a/arch/arm/mm/idmap.c
+++ b/arch/arm/mm/idmap.c
@@ -27,7 +27,7 @@ static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
27 if (pud_none_or_clear_bad(pud) || (pud_val(*pud) & L_PGD_SWAPPER)) { 27 if (pud_none_or_clear_bad(pud) || (pud_val(*pud) & L_PGD_SWAPPER)) {
28 pmd = pmd_alloc_one(&init_mm, addr); 28 pmd = pmd_alloc_one(&init_mm, addr);
29 if (!pmd) { 29 if (!pmd) {
30 pr_warning("Failed to allocate identity pmd.\n"); 30 pr_warn("Failed to allocate identity pmd.\n");
31 return; 31 return;
32 } 32 }
33 /* 33 /*