1/*
2 * (C) Copyright 2012 Stephen Warren
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * SPDX-License-Identifier: GPL-2.0
8 */910#include <common.h>
1112intarch_cpu_init(void)
13{
14icache_enable();
1516return 0;
17}
18