summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib/shutdown.c
blob: 9f993ab7a95389555521572b72b685043e1bcbe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-only

/**
 * 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);