svn commit: r202973 - head/sys/mips/mips

Warner Losh imp at FreeBSD.org
Mon Jan 25 16:44:19 UTC 2010


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


More information about the svn-src-all mailing list