/** * This function is called by shutdown_barebox to get a clean * memory/cache state. */ #include #include static void arch_shutdown(void) { flush_cache_all(); } archshutdown_exitcall(arch_shutdown);