xref: /openbmc/u-boot/arch/arm/mach-bcm283x/init.c (revision e6ac28b6)
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  */
9 
10 #include <common.h>
11 
12 int arch_cpu_init(void)
13 {
14 	icache_enable();
15 
16 	return 0;
17 }
18