Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2a0f9c4c452298da89b67060c7ca034ef7836aa9
Commit:     2a0f9c4c452298da89b67060c7ca034ef7836aa9
Parent:     2a3e480d4b3392ce8907089094bd074575f9bb2a
Author:     Helge Deller <[EMAIL PROTECTED]>
AuthorDate: Thu Nov 1 22:19:15 2007 -0400
Committer:  Dmitry Torokhov <[EMAIL PROTECTED]>
CommitDate: Thu Nov 1 22:19:15 2007 -0400

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]>
---
 drivers/input/mouse/inport.c |    2 +-
 drivers/input/mouse/logibm.c |    2 +-
 2 files changed, 2 insertions(+), 2 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;
        }
diff --git a/drivers/input/mouse/logibm.c b/drivers/input/mouse/logibm.c
index b23a4f3..37e7c75 100644
--- a/drivers/input/mouse/logibm.c
+++ b/drivers/input/mouse/logibm.c
@@ -134,7 +134,7 @@ static int __init logibm_init(void)
        udelay(100);
 
        if (inb(LOGIBM_SIGNATURE_PORT) != LOGIBM_SIGNATURE_BYTE) {
-               printk(KERN_ERR "logibm.c: Didn't find Logitech busmouse at 
%#x\n", LOGIBM_BASE);
+               printk(KERN_INFO "logibm.c: Didn't find Logitech busmouse at 
%#x\n", LOGIBM_BASE);
                err = -ENODEV;
                goto err_release_region;
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to