Pārlūkot izejas kodu

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>
Helge Deller 17 gadi atpakaļ
vecāks
revīzija
2a0f9c4c45
2 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 1 1
      drivers/input/mouse/inport.c
  2. 1 1
      drivers/input/mouse/logibm.c

+ 1 - 1
drivers/input/mouse/inport.c

@@ -144,7 +144,7 @@ static int __init inport_init(void)
 	b = inb(INPORT_SIGNATURE_PORT);
 	b = inb(INPORT_SIGNATURE_PORT);
 	c = inb(INPORT_SIGNATURE_PORT);
 	c = inb(INPORT_SIGNATURE_PORT);
 	if (a == b || a != c) {
 	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;
 		err = -ENODEV;
 		goto err_release_region;
 		goto err_release_region;
 	}
 	}

+ 1 - 1
drivers/input/mouse/logibm.c

@@ -134,7 +134,7 @@ static int __init logibm_init(void)
 	udelay(100);
 	udelay(100);
 
 
 	if (inb(LOGIBM_SIGNATURE_PORT) != LOGIBM_SIGNATURE_BYTE) {
 	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;
 		err = -ENODEV;
 		goto err_release_region;
 		goto err_release_region;
 	}
 	}