Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev Allow larger timer variation.



details:   https://anonhg.NetBSD.org/src/rev/5c2d0d269402
branches:  trunk
changeset: 477117:5c2d0d269402
user:      augustss <augustss%NetBSD.org@localhost>
date:      Mon Oct 11 12:53:14 1999 +0000

description:
Allow larger timer variation.

diffstat:

 sys/dev/sequencer.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 45d50a1cfc35 -r 5c2d0d269402 sys/dev/sequencer.c
--- a/sys/dev/sequencer.c       Mon Oct 11 12:52:10 1999 +0000
+++ b/sys/dev/sequencer.c       Mon Oct 11 12:53:14 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sequencer.c,v 1.13 1998/11/25 22:17:07 augustss Exp $  */
+/*     $NetBSD: sequencer.c,v 1.14 1999/10/11 12:53:14 augustss Exp $  */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -554,8 +554,8 @@
                t = *(int *)addr;
                if (t < 1)
                        t = 1;
-               if (t > 1000)
-                       t = 1000;
+               if (t > 10000)
+                       t = 10000;
                sc->timer.timebase = t;
                *(int *)addr = t;
                RECALC_TICK(&sc->timer);



Home | Main Index | Thread Index | Old Index