diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-10-08 00:25:57 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-05 19:24:07 -0800 |
commit | 10263f656a23e303d9d2ae1336ea6ff83f0714ef (patch) | |
tree | 0d317ba203f29213709c7abaeea451e96f252dbb /drivers/tty/hvc | |
parent | 32304d753304b1aaf79eb4957d1d1375ddc92c14 (diff) | |
download | talos-obmc-linux-10263f656a23e303d9d2ae1336ea6ff83f0714ef.tar.gz talos-obmc-linux-10263f656a23e303d9d2ae1336ea6ff83f0714ef.zip |
tty: hvcs: Remove unnecessary KERN_ERR in hvcs.c
This patch remove unnecessary KERN_ERR in pr_warning() within hvcs.c
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/hvc')
-rw-r--r-- | drivers/tty/hvc/hvcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c index 81e939e90c4c..81ff7e1bfb1a 100644 --- a/drivers/tty/hvc/hvcs.c +++ b/drivers/tty/hvc/hvcs.c @@ -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(KERN_ERR "HVCS: Failed to create rescan file (err %d)\n", rc); + pr_warning("HVCS: Failed to create rescan file (err %d)\n", rc); return 0; } |