summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-03-02 14:32:53 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-03-02 14:32:53 +0000
commite002b9cfd0c94b77643859948649251fe67b7695 (patch)
tree7ea5b10bbd932948027bb080e79b899b75bb9b51 /apps/plugin.c
parent3e1d8e4a5d0e0f49eec494acbf8190e624085d71 (diff)
Added cpu_boost() to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6102 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 63efcb5602..86e4a25523 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -260,6 +260,9 @@ static const struct plugin_api rockbox_api = {
the API gets incompatible */
#ifndef SIMULATOR
&cpu_frequency,
+#ifdef HAVE_ADJUSTABLE_CPU_FREQ
+ cpu_boost,
+#endif
#endif
};