summaryrefslogtreecommitdiff
path: root/drivers/input
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2015-09-05 17:29:09 (GMT)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-09-05 18:11:48 (GMT)
commitf5d75341fac6033f6afac900da110cc78e06d40d (patch)
treed49678b3dc306db90de6ada067dd753834955ec0 /drivers/input
parenteb38f3a4f6e86f8bb10a3217ebd85ecc5d763aae (diff)
downloadlinux-f5d75341fac6033f6afac900da110cc78e06d40d.tar.xz
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>
Diffstat (limited to 'drivers/input')
-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 c9c98f0a..db91de5 100644
--- a/drivers/input/serio/i8042.c
+++ b/drivers/input/serio/i8042.c
@@ -877,7 +877,7 @@ static int __init i8042_check_aux(void)
static int i8042_controller_check(void)
{
if (i8042_flush()) {
- pr_err("No controller found\n");
+ pr_info("No controller found\n");
return -ENODEV;
}