diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2008-10-27 16:30:24 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2008-10-27 16:30:24 +0000 |
commit | a9e69d935cb5c2e5ffca1bbc977252ce7661d343 (patch) | |
tree | 8ac65804b294cfe7cc55febe445f904a1b33cb0e /firmware/target/mips/ingenic_jz47xx | |
parent | e5d72ac5f767a66b11c7a46dfb4edd322f7a723d (diff) | |
download | rockbox-a9e69d935cb5c2e5ffca1bbc977252ce7661d343.tar.gz rockbox-a9e69d935cb5c2e5ffca1bbc977252ce7661d343.zip |
Strange little kernel optimization to ease targeting the timer tick and to limit the number of loops in the tick function to the number of tasks added rather than always looping the max number.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18893 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/mips/ingenic_jz47xx')
-rw-r--r-- | firmware/target/mips/ingenic_jz47xx/kernel-jz4740.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/kernel-jz4740.c b/firmware/target/mips/ingenic_jz47xx/kernel-jz4740.c index 62176cee24..dcfdfd6a38 100644 --- a/firmware/target/mips/ingenic_jz47xx/kernel-jz4740.c +++ b/firmware/target/mips/ingenic_jz47xx/kernel-jz4740.c | |||
@@ -24,8 +24,6 @@ | |||
24 | #include "kernel.h" | 24 | #include "kernel.h" |
25 | #include "jz4740.h" | 25 | #include "jz4740.h" |
26 | 26 | ||
27 | extern void (*tick_funcs[MAX_NUM_TICK_TASKS])(void); | ||
28 | |||
29 | #define USE_RTC_CLOCK 0 | 27 | #define USE_RTC_CLOCK 0 |
30 | void tick_start(unsigned int interval_in_ms) | 28 | void tick_start(unsigned int interval_in_ms) |
31 | { | 29 | { |
@@ -70,13 +68,6 @@ void TCU0(void) | |||
70 | { | 68 | { |
71 | __tcu_clear_full_match_flag(0); | 69 | __tcu_clear_full_match_flag(0); |
72 | 70 | ||
73 | int i; | ||
74 | |||
75 | /* Run through the list of tick tasks */ | 71 | /* Run through the list of tick tasks */ |
76 | for(i = 0; i < MAX_NUM_TICK_TASKS; i++) | 72 | call_tick_tasks(); |
77 | { | ||
78 | if(tick_funcs[i]) | ||
79 | tick_funcs[i](); | ||
80 | } | ||
81 | current_tick++; | ||
82 | } | 73 | } |