aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/serio/i8042.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2015-09-05 10:29:09 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-09-05 11:11:48 -0700
commitf5d75341fac6033f6afac900da110cc78e06d40d (patch)
treed49678b3dc306db90de6ada067dd753834955ec0 /drivers/input/serio/i8042.c
parentInput: evdev - do not report errors form flush() (diff)
downloadlinux-dev-f5d75341fac6033f6afac900da110cc78e06d40d.tar.xz
linux-dev-f5d75341fac6033f6afac900da110cc78e06d40d.zip
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/serio/i8042.c')
-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)
static int i8042_controller_check(void)
{
if (i8042_flush()) {
- pr_err("No controller found\n");
+ pr_info("No controller found\n");
return -ENODEV;
}