aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2015-09-05 13:29:09 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-09-05 14:11:48 -0400
commitf5d75341fac6033f6afac900da110cc78e06d40d (patch)
treed49678b3dc306db90de6ada067dd753834955ec0
parenteb38f3a4f6e86f8bb10a3217ebd85ecc5d763aae (diff)
Input: i8042 - lower log level for "no controller" message
Nowadays the machines without i8042 controller is popular, and no need to print "No controller found" message in the error log level, which annoys at booting in quiet mode. Let's lower it info level. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/serio/i8042.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
index c9c98f0ab284..db91de539ee3 100644
--- a/drivers/input/serio/i8042.c
+++ b/drivers/input/serio/i8042.c
@@ -877,7 +877,7 @@ static int __init i8042_check_aux(void)
877static int i8042_controller_check(void) 877static int i8042_controller_check(void)
878{ 878{
879 if (i8042_flush()) { 879 if (i8042_flush()) {
880 pr_err("No controller found\n"); 880 pr_info("No controller found\n");
881 return -ENODEV; 881 return -ENODEV;
882 } 882 }
883 883