Commit 16cc0fe9 authored by William Lee Irwin III's avatar William Lee Irwin III Committed by Linus Torvalds

[PATCH] lower priority of "too many keys" msg in atkbd.c

From: "Jon Thackray" <jgt@pobox.com>

 * Lowered priority of "too many keys" message in drivers/input/keyboard/atkbd.c
This fixes Debian BTS #239036.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=239036


The keyboard under 2.6.4 seems to be behaving strangely, reporting unknown
key codes and too many keys pressed, even when no keys have been pressed.
The keyboard is connected via an 8 way KVM switch, but was working quite
acceptably under 2.4.25 with no such messages.  Trying 2.6.3 is not an
option as it doesn't support the hardware properly, as previously reported.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 545ce876
......@@ -288,7 +288,7 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
atkbd_report_key(&atkbd->dev, regs, KEY_HANJA, 3);
goto out;
case ATKBD_RET_ERR:
printk(KERN_WARNING "atkbd.c: Keyboard on %s reports too many keys pressed.\n", serio->phys);
printk(KERN_DEBUG "atkbd.c: Keyboard on %s reports too many keys pressed.\n", serio->phys);
goto out;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment