From 5d870f020d70602427f09557549491b9c8e3c87e Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 28 Apr 2010 11:50:54 +0000 Subject: [PATCH] tty: try more often to get the config byte. --- drivers/tty/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/keyboard.c b/drivers/tty/keyboard.c index cf58c628c..aece6f9f8 100644 --- a/drivers/tty/keyboard.c +++ b/drivers/tty/keyboard.c @@ -897,7 +897,7 @@ PRIVATE int kbc_read() /* Wait at most 1 second for a byte from the keyboard or * the kbd controller, return -1 on a timeout. */ - for (i= 0; i<1000; i++) + for (i= 0; i<1000000; i++) #if 0 micro_start(&ms); do -- 2.44.0