summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib/shutdown.c
blob: 973cd23c718410c44431376c1e5e7d0de860abb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * This function is called by shutdown_barebox to get a clean
 * memory/cache state.
 */
#include <init.h>
#include <asm/cache.h>

static void arch_shutdown(void)
{
	flush_cache_all();
}
archshutdown_exitcall(arch_shutdown);