Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Apr 2002 16:55:37 -0700 (PDT)
From:      Jake Burkholder <jake@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 9406 for review
Message-ID:  <200204082355.g38NtbK03419@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=9406

Change 9406 by jake@jake_sparc64 on 2002/04/08 16:55:33

	Reduce diffs.

Affected files ...

... //depot/projects/sparc64/sys/dev/ofw/ofw_console.c#13 edit

Differences ...

==== //depot/projects/sparc64/sys/dev/ofw/ofw_console.c#13 (text+ko) ====

@@ -130,7 +130,11 @@
 	error = (*linesw[tp->t_line].l_open)(dev, tp);
 
 	if (error == 0 && setuptimeout) {
-		polltime = hz / 4;
+		polltime = hz / OFW_POLL_HZ;
+		if (polltime < 1) {
+			polltime = 1;
+		}
+
 		ofw_timeouthandle = timeout(ofw_timeout, tp, polltime);
 	}
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200204082355.g38NtbK03419>