linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] input/xen-kbdfront: Enable auto repeat for xen keyboard frontend driver
@ 2017-08-23 18:10 Liang Yan
  2017-08-23 18:36 ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Liang Yan @ 2017-08-23 18:10 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: linux-kernel, linux-input

Long pressed key could not show right in XEN vncviewer after tigervnc
client changed the way how to send repeat keys, from "Down Up Down Up
..." to "Down Down ... Up". By enable EV_REP bit here, XEN keyboard
device will trigger default auto repeat process from input subsystem,
and make auto repeat keys work correctly.

Signed-off-by: Liang Yan <lyan@suse.com>
---
 drivers/input/misc/xen-kbdfront.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/input/misc/xen-kbdfront.c b/drivers/input/misc/xen-kbdfront.c
index fa130e7b734c..0dce9830e2f4 100644
--- a/drivers/input/misc/xen-kbdfront.c
+++ b/drivers/input/misc/xen-kbdfront.c
@@ -248,6 +248,7 @@ static int xenkbd_probe(struct xenbus_device *dev,
 	kbd->id.product = 0xffff;
 
 	__set_bit(EV_KEY, kbd->evbit);
+	__set_bit(EV_REP, kbd->evbit);
 	for (i = KEY_ESC; i < KEY_UNKNOWN; i++)
 		__set_bit(i, kbd->keybit);
 	for (i = KEY_OK; i < KEY_MAX; i++)
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-08-24 12:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-23 18:10 [PATCH] input/xen-kbdfront: Enable auto repeat for xen keyboard frontend driver Liang Yan
2017-08-23 18:36 ` Dmitry Torokhov
2017-08-24 12:39   ` Liang Yan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).