From 2addafc57fb95db45c1517a30d3980e435a39745 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 2 Dec 2018 23:47:13 +0000 Subject: [PATCH] trs80m1: fix keyboard repeat --- Kernel/platform-trs80m1/devtty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-trs80m1/devtty.c b/Kernel/platform-trs80m1/devtty.c index 80a290fb..528413b0 100644 --- a/Kernel/platform-trs80m1/devtty.c +++ b/Kernel/platform-trs80m1/devtty.c @@ -20,7 +20,7 @@ static char tbuf4[TTYSIZ]; uint8_t curtty; /* output side */ static uint8_t inputtty; /* input side */ static struct vt_switch ttysave[2]; -struct vt_repeat keyrepeat; +struct vt_repeat keyrepeat = { 40, 4 }; extern uint8_t *vtbase[2]; /* Default to having /dev/tty and the two consoles openable. Our probe -- 2.34.1