diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2012-09-17 05:44:46 +0400 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2012-10-03 15:12:14 -0700 |
commit | 8bac83289a061e9b080d500533f29b5822de5b80 (patch) | |
tree | f5327851e4b40563070df1408fdd7149f1921c9c /arch/xtensa/platforms | |
parent | 5295325fbf4d48842ca1540fa7bdc51bc19e2fa6 (diff) | |
download | blackbird-obmc-linux-8bac83289a061e9b080d500533f29b5822de5b80.tar.gz blackbird-obmc-linux-8bac83289a061e9b080d500533f29b5822de5b80.zip |
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 <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/platforms')
-rw-r--r-- | arch/xtensa/platforms/iss/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/platforms/iss/console.c b/arch/xtensa/platforms/iss/console.c index daee86cdf0cc..3fc152292499 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; |