Date: Mon, 25 Jan 2010 16:44:19 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r202973 - head/sys/mips/mips Message-ID: <201001251644.o0PGiJJ0019563@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Mon Jan 25 16:44:18 2010 New Revision: 202973 URL: http://svn.freebsd.org/changeset/base/202973 Log: 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... Modified: head/sys/mips/mips/tick.c Modified: head/sys/mips/mips/tick.c ============================================================================== --- head/sys/mips/mips/tick.c Mon Jan 25 16:10:22 2010 (r202972) +++ head/sys/mips/mips/tick.c Mon Jan 25 16:44:18 2010 (r202973) @@ -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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001251644.o0PGiJJ0019563>