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>
This commit is contained in:
Masanari Iida 2014-10-08 00:25:57 +09:00 committed by Greg Kroah-Hartman
parent 32304d7533
commit 10263f656a
1 changed files with 1 additions and 1 deletions

View File

@ -1575,7 +1575,7 @@ static int __init hvcs_module_init(void)
*/ */
rc = driver_create_file(&(hvcs_vio_driver.driver), &driver_attr_rescan); rc = driver_create_file(&(hvcs_vio_driver.driver), &driver_attr_rescan);
if (rc) 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; return 0;
} }