aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ofw/ofw_console.c
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2002-01-01 21:45:30 +0000
committerJake Burkholder <jake@FreeBSD.org>2002-01-01 21:45:30 +0000
commitcbecdd5743b7e7ceb1887f23cf1d64ee980dac21 (patch)
tree4bd380954b91a1656a1c24d8ec688d15cb7e542c /sys/dev/ofw/ofw_console.c
parent48cff2ea0ba021ec90dd4ad0b8a776e12b3c1023 (diff)
downloadsrc-cbecdd5743b7e7ceb1887f23cf1d64ee980dac21.tar.gz
src-cbecdd5743b7e7ceb1887f23cf1d64ee980dac21.zip
1. Lower the poll timeout for the ofw console driver from hz / 50 to hz / 4.
This gives a bit of a sluggish console, but it prevents the console from getting stuck if we poll too fast, as well as other badness on certain machines. 2. Fix a test for != 0 that should have been > 0. Noticed by: Jamey Wood <Jamey.Wood@Sun.COM> and myself Submitted by: tmm (2)
Notes
Notes: svn path=/head/; revision=88792
Diffstat (limited to 'sys/dev/ofw/ofw_console.c')
-rw-r--r--sys/dev/ofw/ofw_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ofw/ofw_console.c b/sys/dev/ofw/ofw_console.c
index 282a442c9f8f..fef7d844b5e6 100644
--- a/sys/dev/ofw/ofw_console.c
+++ b/sys/dev/ofw/ofw_console.c
@@ -39,7 +39,7 @@ static const char rcsid[] =
#include <dev/ofw/openfirm.h>
-#define OFW_POLL_HZ 50
+#define OFW_POLL_HZ 4
static d_open_t ofw_dev_open;
static d_close_t ofw_dev_close;
@@ -286,7 +286,7 @@ ofw_cons_checkc(dev_t dev)
{
unsigned char ch;
- if (OF_read(stdin, &ch, 1) != 0) {
+ if (OF_read(stdin, &ch, 1) > 0) {
return (ch);
}