From b4a1e4d0b1ed37930ebad858c8f8ac6a736a1a60 Mon Sep 17 00:00:00 2001 From: sobomax Date: Wed, 9 Mar 2016 18:38:03 +0000 Subject: [PATCH] Second argument of the mips_timer_init_params() is boolean, so pass in "1" for true consistently. --- sys/mips/rt305x/rt305x_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/rt305x/rt305x_machdep.c b/sys/mips/rt305x/rt305x_machdep.c index 54e79066ec26..edeb40cafdc4 100644 --- a/sys/mips/rt305x/rt305x_machdep.c +++ b/sys/mips/rt305x/rt305x_machdep.c @@ -203,5 +203,5 @@ platform_start(__register_t a0 __unused, __register_t a1 __unused, mips_init(); - mips_timer_init_params(platform_counter_freq, 2); + mips_timer_init_params(platform_counter_freq, 1); }