summaryrefslogtreecommitdiffstats
path: root/sys/mips/mips/tick.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2010-01-25 16:44:18 +0000
committerimp <imp@FreeBSD.org>2010-01-25 16:44:18 +0000
commit99646c7cca53e66b15938ce0fd8008eaf8f66465 (patch)
treed8704ef15bc42edeaab9209e024a12e0b49a999e /sys/mips/mips/tick.c
parent298fb23cabf6af06d43aaf7b678238852c917732 (diff)
downloadFreeBSD-src-99646c7cca53e66b15938ce0fd8008eaf8f66465.zip
FreeBSD-src-99646c7cca53e66b15938ce0fd8008eaf8f66465.tar.gz
Comment out the led wheel code for the moment. Likely it shouldn't
even be here in the first place, but it is cool to see FreeBSD scrolling on the LED pannel of the octeon board when we're running...
Diffstat (limited to 'sys/mips/mips/tick.c')
-rw-r--r--sys/mips/mips/tick.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/mips/mips/tick.c b/sys/mips/mips/tick.c
index 6063275..b374cae 100644
--- a/sys/mips/mips/tick.c
+++ b/sys/mips/mips/tick.c
@@ -240,10 +240,10 @@ DELAY(int n)
}
}
-#ifdef TARGET_OCTEON
+#if 0 /* TARGET_OCTEON */
int64_t wheel_run = 0;
-void octeon_led_run_wheel(void);
+void octeon_led_run_wheel();
#endif
/*
@@ -295,7 +295,7 @@ clock_intr(void *arg)
profclock(USERMODE(tf->sr), tf->pc);
}
critical_exit();
-#ifdef TARGET_OCTEON
+#if 0 /* TARGET_OCTEON */
/* Run the FreeBSD display once every hz ticks */
wheel_run += cycles_per_tick;
if (wheel_run >= cycles_per_sec) {
OpenPOWER on IntegriCloud