summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/rockboy.c
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-11-26 18:31:41 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-11-26 18:31:41 +0000
commit80da8b141c4672ca4380d66094976b6342ed5071 (patch)
tree631e9edd537ae9983524622a9e1ec82e24957280 /apps/plugins/rockboy/rockboy.c
parent8ef3c8a342d41c2aa5e5d8370fd4e89d4d8d937e (diff)
downloadrockbox-80da8b141c4672ca4380d66094976b6342ed5071.tar.gz
rockbox-80da8b141c4672ca4380d66094976b6342ed5071.zip
FS#6357, patch 1: let iramcopy and bss share the same space in codecs and
plugins. Currently, in case of plugins using IRAM bss is cleared twice, once in the loader, once in PLUGIN_IRAM_INIT. For codecs, bss is cleared only during codec initialization. Also, removed double variables in codecs storing a pointer to codec_api. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11606 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/rockboy/rockboy.c')
-rw-r--r--apps/plugins/rockboy/rockboy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/rockboy.c b/apps/plugins/rockboy/rockboy.c
index 6a72856bbb..cce0f8c863 100644
--- a/apps/plugins/rockboy/rockboy.c
+++ b/apps/plugins/rockboy/rockboy.c
@@ -157,6 +157,8 @@ void savesettings(void)
157/* this is the plugin entry point */ 157/* this is the plugin entry point */
158enum plugin_status plugin_start(struct plugin_api* api, void* parameter) 158enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
159{ 159{
160 PLUGIN_IRAM_INIT(api)
161
160 /* if you are using a global api pointer, don't forget to copy it! 162 /* if you are using a global api pointer, don't forget to copy it!
161 otherwise you will get lovely "I04: IllInstr" errors... :-) */ 163 otherwise you will get lovely "I04: IllInstr" errors... :-) */
162 rb = api; 164 rb = api;
@@ -181,8 +183,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
181#endif 183#endif
182 setoptions(); 184 setoptions();
183 185
184 PLUGIN_IRAM_INIT(rb)
185
186 shut=0; 186 shut=0;
187 cleanshut=0; 187 cleanshut=0;
188 188