summaryrefslogtreecommitdiffstats
path: root/input-kill-stupid-messages.patch
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2019-12-05 00:33:21 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2019-12-05 00:34:15 +0100
commit91b06924d96afcf0f1d0e9c547eb15f01c78fffb (patch)
tree40017dfdc10bbf6ee55a5affce794af3e587263c /input-kill-stupid-messages.patch
parent2adce5aeb6c95194af74c43c1598563c4748823a (diff)
parent6b45f47575b44ead23d61138c8f080fbb9f81f80 (diff)
downloadkernel-91b06924d96afcf0f1d0e9c547eb15f01c78fffb.tar.gz
kernel-91b06924d96afcf0f1d0e9c547eb15f01c78fffb.tar.xz
kernel-91b06924d96afcf0f1d0e9c547eb15f01c78fffb.zip
Diffstat (limited to 'input-kill-stupid-messages.patch')
-rw-r--r--input-kill-stupid-messages.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/input-kill-stupid-messages.patch b/input-kill-stupid-messages.patch
deleted file mode 100644
index 04205f857..000000000
--- a/input-kill-stupid-messages.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-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 ec876b5b1382..9d5216e23a09 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++;