33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
|
From b2c6d55b2351152696aafb8c9bf3ec8968acf77c Mon Sep 17 00:00:00 2001
|
||
|
From: Kyle McMartin <kyle@phobos.i.jkkm.org>
|
||
|
Date: Mon, 29 Mar 2010 23:59:58 -0400
|
||
|
Subject: linux-2.6-input-kill-stupid-messages
|
||
|
|
||
|
---
|
||
|
drivers/input/keyboard/atkbd.c | 5 +++++
|
||
|
1 files changed, 5 insertions(+), 0 deletions(-)
|
||
|
|
||
|
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
|
||
|
index d358ef8..38db098 100644
|
||
|
--- a/drivers/input/keyboard/atkbd.c
|
||
|
+++ b/drivers/input/keyboard/atkbd.c
|
||
|
@@ -425,11 +426,15 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
|
||
|
goto out;
|
||
|
case ATKBD_RET_ACK:
|
||
|
case ATKBD_RET_NAK:
|
||
|
+#if 0
|
||
|
+ /* 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. "
|
||
|
"Some program might be trying access hardware directly.\n",
|
||
|
data == ATKBD_RET_ACK ? "ACK" : "NAK", serio->phys);
|
||
|
+#endif
|
||
|
goto out;
|
||
|
case ATKBD_RET_ERR:
|
||
|
atkbd->err_count++;
|
||
|
--
|
||
|
1.7.0.1
|
||
|
|