diff options
Diffstat (limited to 'os/pc/i8253.c')
| -rw-r--r-- | os/pc/i8253.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/pc/i8253.c b/os/pc/i8253.c index d7cff39e..0759088f 100644 --- a/os/pc/i8253.c +++ b/os/pc/i8253.c @@ -201,7 +201,7 @@ i8253timerset(uvlong next) period = want - now; if(period < MinPeriod) period = MinPeriod; - else if(period > (4*MaxPeriod)/5) /* strong attraction to MaxPeriod */ + else if(period > MaxPeriod) period = MaxPeriod; } |
