svn commit: r296569 - head/sys/mips/rt305x

Maxim Sobolev sobomax at FreeBSD.org
Wed Mar 9 18:38:05 UTC 2016


Author: sobomax
Date: Wed Mar  9 18:38:03 2016
New Revision: 296569
URL: https://svnweb.freebsd.org/changeset/base/296569

Log:
  Second argument of the mips_timer_init_params() is boolean, so
  pass in "1" for true consistently.

Modified:
  head/sys/mips/rt305x/rt305x_machdep.c

Modified: head/sys/mips/rt305x/rt305x_machdep.c
==============================================================================
--- head/sys/mips/rt305x/rt305x_machdep.c	Wed Mar  9 17:40:33 2016	(r296568)
+++ head/sys/mips/rt305x/rt305x_machdep.c	Wed Mar  9 18:38:03 2016	(r296569)
@@ -203,5 +203,5 @@ platform_start(__register_t a0 __unused,
 
 
 	mips_init();
-	mips_timer_init_params(platform_counter_freq, 2);
+	mips_timer_init_params(platform_counter_freq, 1);
 }


More information about the svn-src-all mailing list