]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: l2c: clean up L2 cache initialisation messages
authorRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 15 Mar 2014 16:48:08 +0000 (16:48 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 29 May 2014 23:48:03 +0000 (00:48 +0100)
Make one of them purely "English", and the other purely technical.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/mm/cache-l2x0.c

index a544f19c448fc5c67dbe84aed27571ceb6dc83ef..713cdcef25d117f90a42af2f33e6a032c977cd45 100644 (file)
@@ -545,9 +545,10 @@ static void __init __l2c_init(const struct l2c_init_data *data,
 
        outer_cache = fns;
 
-       pr_info("%s cache controller enabled\n", type);
-       pr_info("l2x0: %d ways, CACHE_ID 0x%08x, AUX_CTRL 0x%08x, Cache size: %d kB\n",
-               ways, cache_id, aux, l2x0_size >> 10);
+       pr_info("%s cache controller enabled, %d ways, %d kB\n",
+               type, ways, l2x0_size >> 10);
+       pr_info("%s: CACHE_ID 0x%08x, AUX_CTRL 0x%08x\n",
+               type, cache_id, aux);
 }
 
 void __init l2x0_init(void __iomem *base, u32 aux_val, u32 aux_mask)