Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10263f65 authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman
Browse files

tty: hvcs: Remove unnecessary KERN_ERR in hvcs.c



This patch remove unnecessary KERN_ERR in pr_warning() within hvcs.c

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 32304d75
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}