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.zip rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.gz rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.bz2 rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.xz | |
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 7a0a13b..7746916 100644 --- a/apps/plugins/test_scanrate.c +++ b/apps/plugins/test_scanrate.c @@ -162,7 +162,7 @@ int plugin_main(void) rb->cpu_boost(true); #endif /* The actual frequency is twice the displayed value */ - rb->timer_register(1, NULL, TIMER_FREQ * 5 / scan_rate, 1, + rb->timer_register(1, NULL, TIMER_FREQ * 5 / scan_rate, timer_isr IF_COP(, CPU)); while (!done) |