summaryrefslogtreecommitdiff
path: root/apps/codecs.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs.c')
-rw-r--r--apps/codecs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs.c b/apps/codecs.c
index 4fcf9ce02f..565adcf203 100644
--- a/apps/codecs.c
+++ b/apps/codecs.c
@@ -101,6 +101,9 @@ struct codec_api ci = {
101 NULL, /* configure */ 101 NULL, /* configure */
102 102
103 /* kernel/ system */ 103 /* kernel/ system */
104#ifdef CPU_ARM
105 __div0,
106#endif
104 PREFIX(sleep), 107 PREFIX(sleep),
105 yield, 108 yield,
106 109
@@ -169,9 +172,6 @@ struct codec_api ci = {
169 172
170 /* new stuff at the end, sort into place next time 173 /* new stuff at the end, sort into place next time
171 the API gets incompatible */ 174 the API gets incompatible */
172#ifdef CPU_ARM
173 __div0,
174#endif
175}; 175};
176 176
177void codec_get_full_path(char *path, const char *codec_root_fn) 177void codec_get_full_path(char *path, const char *codec_root_fn)