1 /*
2  * Copyright (C) 2014 Google, Inc
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <cros_ec.h>
9 #include <dm.h>
10 #include <asm/gpio.h>
11 #include <asm/io.h>
12 #include <asm/pci.h>
13 #include <asm/arch/pch.h>
14 
15 int arch_early_init_r(void)
16 {
17 	return 0;
18 }
19 
20 int board_early_init_f(void)
21 {
22 	return 0;
23 }
24