diff options
author | Joe Perches <joe@perches.com> | 2017-02-16 23:11:26 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-17 15:10:49 +0900 |
commit | 2eec10807a2fbf0f240c55070b71b8cd5c09ab23 (patch) | |
tree | 2a604848e3adb600817b9ebbe381d6f4aacd1581 /drivers/char | |
parent | e447d4c06868d85342f6e35db499c463519a27d0 (diff) | |
download | linux-2eec10807a2fbf0f240c55070b71b8cd5c09ab23.tar.gz linux-2eec10807a2fbf0f240c55070b71b8cd5c09ab23.tar.bz2 linux-2eec10807a2fbf0f240c55070b71b8cd5c09ab23.zip |
drivers/char: Convert remaining use of pr_warning to pr_warn
To enable eventual removal of pr_warning
This makes pr_warn use consistent for drivers/char
Prior to this patch, there were 1 use of pr_warning and
40 uses of pr_warn in drivers/char
Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Amit Shah <amit@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/virtio_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index e9b7e0b3cabe..c6f760b3d9d7 100644 --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c @@ -2302,7 +2302,7 @@ static int __init init(void) pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL); if (!pdrvdata.debugfs_dir) - pr_warning("Error creating debugfs dir for virtio-ports\n"); + pr_warn("Error creating debugfs dir for virtio-ports\n"); INIT_LIST_HEAD(&pdrvdata.consoles); INIT_LIST_HEAD(&pdrvdata.portdevs); |