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...
This commit is contained in:
Warner Losh 2010-01-25 16:44:18 +00:00
parent 0a36cb97a8
commit 0f0825cad8

View File

@ -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) {