blob: d2d366ba4f1ed24f405bf1ff5b14590b26591c89 [file] [log] [blame]
Stephen Warren59d63f72012-09-01 16:27:56 +00001/*
2 * (C) Copyright 2012 Stephen Warren
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
Tom Rini5b8031c2016-01-14 22:05:13 -05007 * SPDX-License-Identifier: GPL-2.0
Stephen Warren59d63f72012-09-01 16:27:56 +00008 */
9
10#include <common.h>
11
12int arch_cpu_init(void)
13{
14 icache_enable();
15
16 return 0;
17}