summaryrefslogtreecommitdiff
path: root/drivers/input/mouse/inport.c
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2007-11-02 02:19:15 (GMT)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2007-11-02 02:19:15 (GMT)
commit2a0f9c4c452298da89b67060c7ca034ef7836aa9 (patch)
treed8317d0c410abc0ccb725ae734c2e6201add2ca5 /drivers/input/mouse/inport.c
parent2a3e480d4b3392ce8907089094bd074575f9bb2a (diff)
downloadlinux-fsl-qoriq-2a0f9c4c452298da89b67060c7ca034ef7836aa9.tar.xz
Input: inport, logibm - use KERN_INFO when reporting missing mouse
Many mouse drivers are often compiled (e.g. in Linux distributions) into the kernel at the same time just to make sure that at least one driver will suceed in find it's mouse device. Nevertheless, only the inport and logitech busmouse mouse drivers report with KERN_ERR log level if the mouse wasn't found. They should use KERN_INFO instead, because it's not an error if the mouse isn't attached at all. Signed-off-by: Helge Deller <deller@gmx.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/inport.c')
-rw-r--r--drivers/input/mouse/inport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/inport.c b/drivers/input/mouse/inport.c
index 655a392..26ec095 100644
--- a/drivers/input/mouse/inport.c
+++ b/drivers/input/mouse/inport.c
@@ -144,7 +144,7 @@ static int __init inport_init(void)
b = inb(INPORT_SIGNATURE_PORT);
c = inb(INPORT_SIGNATURE_PORT);
if (a == b || a != c) {
- printk(KERN_ERR "inport.c: Didn't find InPort mouse at %#x\n", INPORT_BASE);
+ printk(KERN_INFO "inport.c: Didn't find InPort mouse at %#x\n", INPORT_BASE);
err = -ENODEV;
goto err_release_region;
}