projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32304d7
)
tty: hvcs: Remove unnecessary KERN_ERR in hvcs.c
author
Masanari Iida
<standby24x7@gmail.com>
Tue, 7 Oct 2014 15:25:57 +0000
(
00:25
+0900)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 6 Nov 2014 03:24:07 +0000
(19:24 -0800)
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>
drivers/tty/hvc/hvcs.c
patch
|
blob
|
history
diff --git
a/drivers/tty/hvc/hvcs.c
b/drivers/tty/hvc/hvcs.c
index 81e939e90c4c44f7ead9bad36eac03f98f998421..81ff7e1bfb1a82ac68dd33d760b84f7edff4e9b8 100644
(file)
--- 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;
}