diff options
Diffstat (limited to 'apps/codecs/codec_crt0.c')
-rw-r--r-- | apps/codecs/codec_crt0.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/codec_crt0.c b/apps/codecs/codec_crt0.c index c680030fee..fdb79092f4 100644 --- a/apps/codecs/codec_crt0.c +++ b/apps/codecs/codec_crt0.c | |||
@@ -47,10 +47,10 @@ enum codec_status codec_start(void) | |||
47 | #endif | 47 | #endif |
48 | ci->memset(plugin_bss_start, 0, plugin_end_addr - plugin_bss_start); | 48 | ci->memset(plugin_bss_start, 0, plugin_end_addr - plugin_bss_start); |
49 | #endif | 49 | #endif |
50 | #if NUM_CORES > 1 | 50 | /* writeback cleared iedata and bss areas, invalidate icache for |
51 | /* writeback cleared iedata and bss areas */ | 51 | * copied code */ |
52 | ci->cpucache_flush(); | 52 | ci->cpucache_invalidate(); |
53 | #endif | 53 | |
54 | return codec_main(); | 54 | return codec_main(); |
55 | } | 55 | } |
56 | 56 | ||