diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-29 14:29:46 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-29 14:29:46 +0000 |
commit | 89ccd5c145e45ad541a02f38e2ad07fb916f7135 (patch) | |
tree | 5fc32e78d793022246e3893f7c420f52d624c96e /firmware/target/sh | |
parent | b955dff268005d3d55ee3f38af0875718ab6021a (diff) | |
download | rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.gz rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.zip |
Remove int_prio argument from timer_register, and move the only use for it into alpine_cdc plugin, since this plugin is only built on SH7034
Also remove it from TIMER_START()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21558 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/sh')
-rw-r--r-- | firmware/target/sh/archos/timer-archos.c | 4 | ||||
-rw-r--r-- | firmware/target/sh/archos/timer-target.h | 6 |
2 files changed, 5 insertions, 5 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) return true; } -bool __timer_start(int int_prio) +bool __timer_start(void) { - IPRD = (IPRD & 0xFF0F) | int_prio << 4; /* interrupt priority */ + IPRD = (IPRD & 0xFF0F) | 1 << 4; /* interrupt priority */ or_b(0x10, &TSTR); /* start timer 4 */ return true; } diff --git a/firmware/target/sh/archos/timer-target.h b/firmware/target/sh/archos/timer-target.h index 08fcae1156..89dfe57eb3 100644 --- a/firmware/target/sh/archos/timer-target.h +++ b/firmware/target/sh/archos/timer-target.h @@ -24,7 +24,7 @@ #include "config.h" bool __timer_set(long cycles, bool start); -bool __timer_start(int int_prio); +bool __timer_start(void); void __timer_stop(void); #define TIMER_FREQ CPU_FREQ @@ -32,8 +32,8 @@ void __timer_stop(void); #define __TIMER_SET(cycles, set) \ __timer_set(cycles, set) -#define __TIMER_START(int_prio) \ - __timer_start(int_prio) +#define __TIMER_START() \ + __timer_start() #define __TIMER_STOP(...) \ __timer_stop() |