/* Second pass, do actual unflattening */
        unflatten_dt_nodes(blob, mem, dad, mynodes);
        if (be32_to_cpup(mem + size) != 0xdeadbeef)
-               pr_warning("End of tree marker overwritten: %08x\n",
-                          be32_to_cpup(mem + size));
+               pr_warn("End of tree marker overwritten: %08x\n",
+                       be32_to_cpup(mem + size));
 
        if (detached && mynodes) {
                of_node_set_flag(*mynodes, OF_DETACHED);
        size &= PAGE_MASK;
 
        if (base > MAX_MEMBLOCK_ADDR) {
-               pr_warning("Ignoring memory block 0x%llx - 0x%llx\n",
-                               base, base + size);
+               pr_warn("Ignoring memory block 0x%llx - 0x%llx\n",
+                       base, base + size);
                return;
        }
 
        if (base + size - 1 > MAX_MEMBLOCK_ADDR) {
-               pr_warning("Ignoring memory range 0x%llx - 0x%llx\n",
-                               ((u64)MAX_MEMBLOCK_ADDR) + 1, base + size);
+               pr_warn("Ignoring memory range 0x%llx - 0x%llx\n",
+                       ((u64)MAX_MEMBLOCK_ADDR) + 1, base + size);
                size = MAX_MEMBLOCK_ADDR - base + 1;
        }
 
        if (base + size < phys_offset) {
-               pr_warning("Ignoring memory block 0x%llx - 0x%llx\n",
-                          base, base + size);
+               pr_warn("Ignoring memory block 0x%llx - 0x%llx\n",
+                       base, base + size);
                return;
        }
        if (base < phys_offset) {
-               pr_warning("Ignoring memory range 0x%llx - 0x%llx\n",
-                          base, phys_offset);
+               pr_warn("Ignoring memory range 0x%llx - 0x%llx\n",
+                       base, phys_offset);
                size -= phys_offset - base;
                base = phys_offset;
        }