summaryrefslogtreecommitdiff
path: root/apps/codecs/codec_crt0.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/codec_crt0.c')
-rw-r--r--apps/codecs/codec_crt0.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/codecs/codec_crt0.c b/apps/codecs/codec_crt0.c
index 467e115de9..09b6982246 100644
--- a/apps/codecs/codec_crt0.c
+++ b/apps/codecs/codec_crt0.c
@@ -34,8 +34,6 @@ extern unsigned char plugin_end_addr[];
34 34
35extern enum codec_status codec_main(void); 35extern enum codec_status codec_main(void);
36 36
37CACHE_FUNCTION_WRAPPERS(ci);
38
39enum codec_status codec_start(void) 37enum codec_status codec_start(void)
40{ 38{
41#ifndef SIMULATOR 39#ifndef SIMULATOR
@@ -47,7 +45,7 @@ enum codec_status codec_start(void)
47#endif 45#endif
48#if NUM_CORES > 1 46#if NUM_CORES > 1
49 /* writeback cleared iedata and bss areas */ 47 /* writeback cleared iedata and bss areas */
50 flush_icache(); 48 ci->cpucache_flush();
51#endif 49#endif
52 return codec_main(); 50 return codec_main();
53} 51}