diff options
Diffstat (limited to 'firmware/target/sh/archos/timer-archos.c')
-rw-r--r-- | firmware/target/sh/archos/timer-archos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/sh/archos/timer-archos.c b/firmware/target/sh/archos/timer-archos.c index e7526a8409..c61318f721 100644 --- a/firmware/target/sh/archos/timer-archos.c +++ b/firmware/target/sh/archos/timer-archos.c | |||
@@ -71,9 +71,9 @@ bool __timer_set(long cycles, bool start) | |||
71 | return true; | 71 | return true; |
72 | } | 72 | } |
73 | 73 | ||
74 | bool __timer_start(int int_prio) | 74 | bool __timer_start(void) |
75 | { | 75 | { |
76 | IPRD = (IPRD & 0xFF0F) | int_prio << 4; /* interrupt priority */ | 76 | IPRD = (IPRD & 0xFF0F) | 1 << 4; /* interrupt priority */ |
77 | or_b(0x10, &TSTR); /* start timer 4 */ | 77 | or_b(0x10, &TSTR); /* start timer 4 */ |
78 | return true; | 78 | return true; |
79 | } | 79 | } |