diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-10-07 11:25:57 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-05 22:24:07 -0500 |
commit | 10263f656a23e303d9d2ae1336ea6ff83f0714ef (patch) | |
tree | 0d317ba203f29213709c7abaeea451e96f252dbb | |
parent | 32304d753304b1aaf79eb4957d1d1375ddc92c14 (diff) |
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>
-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) | |||
1575 | */ | 1575 | */ |
1576 | rc = driver_create_file(&(hvcs_vio_driver.driver), &driver_attr_rescan); | 1576 | rc = driver_create_file(&(hvcs_vio_driver.driver), &driver_attr_rescan); |
1577 | if (rc) | 1577 | if (rc) |
1578 | pr_warning(KERN_ERR "HVCS: Failed to create rescan file (err %d)\n", rc); | 1578 | pr_warning("HVCS: Failed to create rescan file (err %d)\n", rc); |
1579 | 1579 | ||
1580 | return 0; | 1580 | return 0; |
1581 | } | 1581 | } |