summaryrefslogtreecommitdiff
path: root/firmware/timer.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-06-29 14:28:56 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-06-29 14:28:56 +0000
commite0640c3c4b6d238e38155c863e542335ce57a425 (patch)
treeec0d956f861090a91021aee1d360e4a2c6449670 /firmware/timer.c
parent15e40dd3a6ac8e9df88b77c0dbd9a90870ad91e6 (diff)
Rename TIMER_REGISTER macro to TIMER_START and TIMER_UNREGISTER to TIMER_STOP to reflect what they does exactly.
registering and unregistering are handled by the non target-specific functions of timer.c Remove arguments from the new TIMER_START since they are unused by targets git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21553 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/timer.c')
-rw-r--r--firmware/timer.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/firmware/timer.c b/firmware/timer.c
index bcaacba307..e5a60902b6 100644
--- a/firmware/timer.c
+++ b/firmware/timer.c
@@ -39,9 +39,8 @@ static long SHAREDBSS_ATTR cycles_new = 0;
/* Define these if not defined by target to make the #else cases compile
* even if the target doesn't have them implemented. */
#define __TIMER_SET(cycles, set) false
-#define __TIMER_REGISTER(reg_prio, unregister_callback, cycles, \
- int_prio, timer_callback) false
-#define __TIMER_UNREGISTER(...)
+#define __TIMER_START() false
+#define __TIMER_STOP(...)
#endif
/* interrupt handler */
@@ -288,8 +287,7 @@ bool timer_register(int reg_prio, void (*unregister_callback)(void),
irq_enable_int(IRQ_TIMER1);
return true;
#else
- return __TIMER_REGISTER(reg_prio, unregister_callback, cycles,
- int_prio, timer_callback);
+ return __TIMER_START();
#endif
/* Cover for targets that don't use all these */
(void)reg_prio;
@@ -321,7 +319,7 @@ void timer_unregister(void)
TIMER1.ctrl &= ~0x80; /* disable timer 1 */
irq_disable_int(IRQ_TIMER1);
#else
- __TIMER_UNREGISTER();
+ __TIMER_STOP();
#endif
pfn_timer = NULL;
pfn_unregister = NULL;