6a91557e4c
Do a couple things here: - Split the mega-patches into individual patches. Should help with rebasing. - Make all patches 'git am' acceptable. There should be no functional or actual code differences from before
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 0115cafe4d9a93deef3259b18b5b9cdafd60fbef Mon Sep 17 00:00:00 2001
|
|
From: "kernel-team@fedoraproject.org" <kernel-team@fedoraproject.org>
|
|
Date: Thu, 29 Jul 2010 16:46:31 -0700
|
|
Subject: [PATCH] input: kill stupid messages
|
|
|
|
Bugzilla: N/A
|
|
Upstream-status: Fedora mustard
|
|
---
|
|
drivers/input/keyboard/atkbd.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
|
|
index 2dd1d0dd4f7d..7116b70074bf 100644
|
|
--- a/drivers/input/keyboard/atkbd.c
|
|
+++ b/drivers/input/keyboard/atkbd.c
|
|
@@ -436,11 +436,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 to access hardware directly.\n",
|
|
data == ATKBD_RET_ACK ? "ACK" : "NAK", serio->phys);
|
|
+#endif
|
|
goto out;
|
|
case ATKBD_RET_ERR:
|
|
atkbd->err_count++;
|
|
--
|
|
1.9.3
|
|
|