diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2012-12-10 21:26:22 (GMT) |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2012-12-19 05:10:25 (GMT) |
commit | 79fcf52ba0dbcb9888812113df2d7248b41e9af1 (patch) | |
tree | bde08355d6875f8bd9f5e0f16470086a53852600 | |
parent | 90e3bc798bec8b33ba4300a7751b627b54b3bb5b (diff) | |
download | linux-79fcf52ba0dbcb9888812113df2d7248b41e9af1.tar.xz |
xtensa: reset all timers on initialization
There are XCHAL_NUM_TIMERS, reset them all.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
-rw-r--r-- | arch/xtensa/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/kernel/head.S b/arch/xtensa/kernel/head.S index 9013ae0..0cd337a 100644 --- a/arch/xtensa/kernel/head.S +++ b/arch/xtensa/kernel/head.S @@ -111,7 +111,7 @@ ENTRY(_startup) /* Disable all timers. */ .set _index, 0 - .rept XCHAL_NUM_TIMERS - 1 + .rept XCHAL_NUM_TIMERS wsr a0, SREG_CCOMPARE + _index .set _index, _index + 1 .endr |