]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/coreboot/coreboot/coreboot.c
x86: Rename chromebook-x86 to coreboot
[karo-tx-uboot.git] / board / coreboot / coreboot / coreboot.c
diff --git a/board/coreboot/coreboot/coreboot.c b/board/coreboot/coreboot/coreboot.c
new file mode 100644 (file)
index 0000000..0240c34
--- /dev/null
@@ -0,0 +1,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;
+}