Use pr_warn_ratelimited() instead of printk_ratelimited().
checkpatch reports:
WARNING: Prefer ... pr_warn_ratelimited(...  to printk_ratelimited(KERN_WARNING ...
+       printk_ratelimited(KERN_WARNING
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
         * This exception is only triggered when a guest 2 is running
         * and can therefore never occur in kernel context.
         */
-       printk_ratelimited(KERN_WARNING
-                          "Secure storage violation in task: %s, pid %d\n",
-                          current->comm, current->pid);
+       pr_warn_ratelimited("Secure storage violation in task: %s, pid %d\n",
+                           current->comm, current->pid);
        send_sig(SIGSEGV, current, 0);
 }