]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
arch-unicore32-mm-ioremapc-convert-printk-warn_on-to-warn1-fix
authorAndrew Morton <akpm@linux-foundation.org>
Thu, 22 May 2014 00:42:28 +0000 (10:42 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 22 May 2014 00:42:28 +0000 (10:42 +1000)
undo crazy long line

Cc: Fabian Frederick <fabf@skynet.be>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/unicore32/mm/ioremap.c

index 5d9568ceb52709d791ecb6935bd78ed7cb3fb36b..a0840fa054318437139bdfadb6c1eaa96107e6c3 100644 (file)
@@ -144,7 +144,10 @@ void __iomem *__uc32_ioremap_pfn_caller(unsigned long pfn,
         * Don't allow RAM to be mapped
         */
        if (pfn_valid(pfn))
-               WARN(1, "BUG: Your driver calls ioremap() on\nsystem memory.  This leads to architecturally\nunpredictable behaviour, and ioremap() will fail in\nthe next kernel release. Please fix your driver.\n");
+               WARN(1, "BUG: Your driver calls ioremap() on\n"
+                       "system memory.  This leads to architecturally\n"
+                       "unpredictable behaviour, and ioremap() will fail in\n"
+                       "the next kernel release. Please fix your driver.\n");
 
        type = get_mem_type(mtype);
        if (!type)