} while (memory);
 
        if (elements < 0)
-               pr_warning("Freeing of pool %u had too many skbuffs (%d)\n",
+               pr_warn("Freeing of pool %u had too many skbuffs (%d)\n",
                     pool, elements);
        else if (elements > 0)
-               pr_warning("Freeing of pool %u is missing %d skbuffs\n",
+               pr_warn("Freeing of pool %u is missing %d skbuffs\n",
                       pool, elements);
 }
 
                 */
                memory = kmalloc(size + 256, GFP_ATOMIC);
                if (unlikely(memory == NULL)) {
-                       pr_warning("Unable to allocate %u bytes for FPA pool %d\n",
+                       pr_warn("Unable to allocate %u bytes for FPA pool %d\n",
                                   elements * size, pool);
                        break;
                }
        } while (fpa);
 
        if (elements < 0)
-               pr_warning("Freeing of pool %u had too many buffers (%d)\n",
+               pr_warn("Freeing of pool %u had too many buffers (%d)\n",
                        pool, elements);
        else if (elements > 0)
-               pr_warning("Warning: Freeing of pool %u is missing %d buffers\n",
+               pr_warn("Warning: Freeing of pool %u is missing %d buffers\n",
                        pool, elements);
 }