diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-09-05 20:29:09 +0300 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2016-05-11 16:03:12 +0300 |
commit | 3c3015b8da4e0d506152e67bc8d7a3e4fa4bee98 (patch) | |
tree | 52f83105cb4da3429a3b35bfa8f6e8498af6df20 | |
parent | c0607f45d0a9200813b48d20b38be106ed528e73 (diff) | |
download | linux-3c3015b8da4e0d506152e67bc8d7a3e4fa4bee98.tar.xz |
Input: i8042 - lower log level for "no controller" message
commit f5d75341fac6033f6afac900da110cc78e06d40d upstream.
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>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/input/serio/i8042.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c index e38024cf0227..42825216e83d 100644 --- a/drivers/input/serio/i8042.c +++ b/drivers/input/serio/i8042.c @@ -871,7 +871,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; } |