aboutsummaryrefslogtreecommitdiff
path: root/sys/mips/rt305x
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2016-03-09 18:38:03 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2016-03-09 18:38:03 +0000
commit47d306bf35b078ec13a725d5cd8303c4ae5fc50d (patch)
treeae7d8a76e69c933975a30d6bdc60ceb993d6ea1a /sys/mips/rt305x
parent01812876c149506d79cd37e318a95cf5fbb734c1 (diff)
downloadsrc-47d306bf35b078ec13a725d5cd8303c4ae5fc50d.tar.gz
src-47d306bf35b078ec13a725d5cd8303c4ae5fc50d.zip
Second argument of the mips_timer_init_params() is boolean, so
pass in "1" for true consistently.
Notes
Notes: svn path=/head/; revision=296569
Diffstat (limited to 'sys/mips/rt305x')
-rw-r--r--sys/mips/rt305x/rt305x_machdep.c2
1 files changed, 1 insertions, 1 deletions
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);
}