summaryrefslogtreecommitdiffstats
path: root/board/chromebook-x86/coreboot/coreboot.c
blob: 0240c345810f2fdb038dcffc34657857038bcba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (C) 2013 Google, Inc
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <cros_ec.h>

int arch_early_init_r(void)
{
	if (cros_ec_board_init())
		return -1;

	return 0;
}
OpenPOWER on IntegriCloud