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 /apps/plugins/test_scanrate.c | |
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 'apps/plugins/test_scanrate.c')
-rw-r--r-- | apps/plugins/test_scanrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_scanrate.c b/apps/plugins/test_scanrate.c index 7a0a13bc94..7746916386 100644 --- a/apps/plugins/test_scanrate.c +++ b/apps/plugins/test_scanrate.c | |||
@@ -162,7 +162,7 @@ int plugin_main(void) | |||
162 | rb->cpu_boost(true); | 162 | rb->cpu_boost(true); |
163 | #endif | 163 | #endif |
164 | /* The actual frequency is twice the displayed value */ | 164 | /* The actual frequency is twice the displayed value */ |
165 | rb->timer_register(1, NULL, TIMER_FREQ * 5 / scan_rate, 1, | 165 | rb->timer_register(1, NULL, TIMER_FREQ * 5 / scan_rate, |
166 | timer_isr IF_COP(, CPU)); | 166 | timer_isr IF_COP(, CPU)); |
167 | 167 | ||
168 | while (!done) | 168 | while (!done) |