]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drivers/tty: Convert remaining uses of pr_warning to pr_warn
authorJoe Perches <joe@perches.com>
Fri, 17 Feb 2017 07:11:44 +0000 (23:11 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Mar 2017 05:14:00 +0000 (14:14 +0900)
To enable eventual removal of pr_warning

This makes pr_warn use consistent for drivers/tty

Prior to this patch, there were 2 uses of pr_warning and
23 uses of pr_warn in drivers/tty

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/hvc/hvcs.c
drivers/tty/tty_io.c

index 7823d6d998cfd8ca70ab32eb2f51f43c34ef9f3c..99bb875178d7170f50d6500a3d6ec5fb8be757b0 100644 (file)
@@ -1575,7 +1575,7 @@ static int __init hvcs_module_init(void)
         */
        rc = driver_create_file(&(hvcs_vio_driver.driver), &driver_attr_rescan);
        if (rc)
-               pr_warning("HVCS: Failed to create rescan file (err %d)\n", rc);
+               pr_warn("HVCS: Failed to create rescan file (err %d)\n", rc);
 
        return 0;
 }
index e6d1a6510886c5a807cda3b65d651046afe3a48d..de4543ee290bf375369a3188d1fbf9b40549986c 100644 (file)
@@ -2843,8 +2843,8 @@ static void tty_warn_deprecated_flags(struct serial_struct __user *ss)
        flags &= ASYNC_DEPRECATED;
 
        if (flags && __ratelimit(&depr_flags))
-               pr_warning("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
-                               __func__, get_task_comm(comm, current), flags);
+               pr_warn("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
+                       __func__, get_task_comm(comm, current), flags);
 }
 
 /*