summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h21
1 files changed, 3 insertions, 18 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 9ebf793d3f..715f2ec512 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -438,9 +438,9 @@ struct plugin_api {
438 void (*trigger_cpu_boost)(void); 438 void (*trigger_cpu_boost)(void);
439 void (*cancel_cpu_boost)(void); 439 void (*cancel_cpu_boost)(void);
440#endif 440#endif
441#ifdef CACHE_FUNCTIONS_AS_CALL 441#if NUM_CORES > 1
442 void (*flush_icache)(void); 442 void (*cpucache_flush)(void);
443 void (*invalidate_icache)(void); 443 void (*cpucache_invalidate)(void);
444#endif 444#endif
445 bool (*timer_register)(int reg_prio, void (*unregister_callback)(void), 445 bool (*timer_register)(int reg_prio, void (*unregister_callback)(void),
446 long cycles, int int_prio, 446 long cycles, int int_prio,
@@ -854,20 +854,5 @@ extern const struct plugin_api *rb;
854enum plugin_status plugin_start(const void* parameter) 854enum plugin_status plugin_start(const void* parameter)
855 NO_PROF_ATTR; 855 NO_PROF_ATTR;
856 856
857#undef CACHE_FUNCTION_WRAPPERS
858#ifdef CACHE_FUNCTIONS_AS_CALL
859#define CACHE_FUNCTION_WRAPPERS \
860 void flush_icache(void) \
861 { \
862 rb->flush_icache(); \
863 } \
864 void invalidate_icache(void) \
865 { \
866 rb->invalidate_icache(); \
867 }
868#else
869#define CACHE_FUNCTION_WRAPPERS
870#endif /* CACHE_FUNCTIONS_AS_CALL */
871
872#endif /* __PCTOOL__ */ 857#endif /* __PCTOOL__ */
873#endif 858#endif