summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-04-29 18:18:04 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-04-29 18:18:04 +0000
commit1941b91e8bb1bd07d35227f7ae98ff0954813cea (patch)
tree02793c9ae38c360968d5710d097c4fbb26a3483a
parent21c629ed9357161e1ca693b547aa5f757d54f404 (diff)
Blink 8x slower, so that this fits better with Kraftwerk's ``Elektro
Kardiogramm'' in the background.
-rw-r--r--sys/arch/landisk/landisk/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/landisk/landisk/machdep.c b/sys/arch/landisk/landisk/machdep.c
index 2aa4240280d..ed7e19d7ed7 100644
--- a/sys/arch/landisk/landisk/machdep.c
+++ b/sys/arch/landisk/landisk/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.11 2007/04/29 17:53:37 miod Exp $ */
+/* $OpenBSD: machdep.c,v 1.12 2007/04/29 18:18:03 miod Exp $ */
/* $NetBSD: machdep.c,v 1.1 2006/09/01 21:26:18 uwe Exp $ */
/*-
@@ -509,5 +509,5 @@ blink_led(void *whatever)
timeout_set(&blink_tmo, blink_led, NULL);
timeout_add(&blink_tmo,
- ((averunnable.ldavg[0] + FSCALE) * hz) >> (FSHIFT + 3));
+ ((averunnable.ldavg[0] + FSCALE) * hz) >> FSHIFT);
}