2013-12-17 16:16:02 +00:00
|
|
|
Bugzilla: N/A
|
|
|
|
Upstream-status: Fedora mustard
|
|
|
|
|
2010-07-29 23:46:31 +00:00
|
|
|
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
|
2012-05-25 13:03:50 +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-05-25 13:03:50 +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-05-25 13:03:50 +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-05-25 13:03:50 +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++;
|