kernel/linux-2.6-input-kill-stupid...

21 lines
740 B
Diff
Raw Normal View History

2010-07-29 23:46:31 +00:00
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
2012-10-16 18:00:18 +00:00
index add5ffd..5eb2f03 100644
2010-07-29 23:46:31 +00:00
--- a/drivers/input/keyboard/atkbd.c
+++ b/drivers/input/keyboard/atkbd.c
2012-10-16 18:00:18 +00:00
@@ -430,11 +430,15 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
2010-07-29 23:46:31 +00:00
goto out;
case ATKBD_RET_ACK:
case ATKBD_RET_NAK:
2012-10-16 18:00:18 +00:00
+# if 0
2010-07-29 23:46:31 +00:00
+ /* Quite a few key switchers and other tools trigger this
+ * and it confuses people who can do nothing about it */
if (printk_ratelimit())
dev_warn(&serio->dev,
"Spurious %s on %s. "
2012-10-16 18:00:18 +00:00
"Some program might be trying to access hardware directly.\n",
2010-07-29 23:46:31 +00:00
data == ATKBD_RET_ACK ? "ACK" : "NAK", serio->phys);
+#endif
goto out;
case ATKBD_RET_ERR:
atkbd->err_count++;