mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
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
This commit is contained in:
parent
15e40dd3a6
commit
e0640c3c4b
17 changed files with 68 additions and 78 deletions
|
|
@ -87,7 +87,7 @@ bool __timer_set(long cycles, bool start)
|
|||
return retval;
|
||||
}
|
||||
|
||||
bool __timer_register(void)
|
||||
bool __timer_start(void)
|
||||
{
|
||||
bool retval = true;
|
||||
|
||||
|
|
@ -122,7 +122,7 @@ bool __timer_register(void)
|
|||
return retval;
|
||||
}
|
||||
|
||||
void __timer_unregister(void)
|
||||
void __timer_stop(void)
|
||||
{
|
||||
int oldstatus = disable_interrupt_save(IRQ_FIQ_STATUS);
|
||||
stop_timer();
|
||||
|
|
|
|||
|
|
@ -26,17 +26,16 @@
|
|||
#define TIMER234_PRESCALE 21
|
||||
|
||||
bool __timer_set(long cycles, bool set);
|
||||
bool __timer_register(void);
|
||||
void __timer_unregister(void);
|
||||
bool __timer_start(void);
|
||||
void __timer_stop(void);
|
||||
|
||||
#define __TIMER_SET(cycles, set) \
|
||||
__timer_set(cycles, set)
|
||||
|
||||
#define __TIMER_REGISTER(reg_prio, unregister_callback, cycles, \
|
||||
int_prio, timer_callback) \
|
||||
__timer_register()
|
||||
#define __TIMER_START() \
|
||||
__timer_start()
|
||||
|
||||
#define __TIMER_UNREGISTER(...) \
|
||||
__timer_unregister()
|
||||
#define __TIMER_STOP(...) \
|
||||
__timer_stop()
|
||||
|
||||
#endif /* TIMER_TARGET_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue