From 361746264b5e875e9b3c6f5b844accfe629e28bb Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Fri, 25 Apr 2014 11:02:13 +0200 Subject: [PATCH] tty: n_hdlc: Drop redundant error message On initialization failure, an error message is already printed with level KERN_ERR, no need to print another one with level KERN_INFO. Signed-off-by: Jean Delvare Cc: Jiri Slaby Signed-off-by: Greg Kroah-Hartman --- drivers/tty/n_hdlc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/tty/n_hdlc.c b/drivers/tty/n_hdlc.c index 1b2db9a..ef42942 100644 --- a/drivers/tty/n_hdlc.c +++ b/drivers/tty/n_hdlc.c @@ -952,8 +952,6 @@ static char hdlc_register_ok[] __initdata = KERN_INFO "N_HDLC line discipline registered.\n"; static char hdlc_register_fail[] __initdata = KERN_ERR "error registering line discipline: %d\n"; -static char hdlc_init_fail[] __initdata = - KERN_INFO "N_HDLC: init failure %d\n"; static int __init n_hdlc_init(void) { @@ -973,8 +971,6 @@ static int __init n_hdlc_init(void) else printk(hdlc_register_fail, status); - if (status) - printk(hdlc_init_fail, status); return status; } /* end of init_module() */ -- 2.7.4