From: Max Filippov Date: Wed, 11 Jul 2012 21:44:03 +0000 (+0400) Subject: xtensa: ISS: change keyboard polling rate X-Git-Tag: next-20120816~78^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b8c86af21a2cc82863ac4fd608688faf5191b973;p=karo-tx-linux.git xtensa: ISS: change keyboard polling rate Polling rate of once per 20 seconds seems to be too low. Increase it to 10 times per second. Signed-off-by: Max Filippov Signed-off-by: Chris Zankel --- diff --git a/arch/xtensa/platforms/iss/console.c b/arch/xtensa/platforms/iss/console.c index 5b43aa8767a2..7dc0788adab2 100644 --- a/arch/xtensa/platforms/iss/console.c +++ b/arch/xtensa/platforms/iss/console.c @@ -33,7 +33,7 @@ #endif #define SERIAL_MAX_NUM_LINES 1 -#define SERIAL_TIMER_VALUE (20 * HZ) +#define SERIAL_TIMER_VALUE (HZ / 10) static struct tty_driver *serial_driver; static struct tty_port serial_port;