summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Meng <[email protected]>2015-01-06 22:14:22 +0800
committerSimon Glass <[email protected]>2015-01-13 07:25:04 -0800
commit48a223e4ba0a7fec5940cccf7950b656e4f7cbed (patch)
tree921034a84f103f086f6cdfe6dc75721c75aee7a6
parentade8127a7929c6394908e7debe89e297202b7efa (diff)
x86: coreboot: Wrap cros_ec initialization
cros_ec_board_init() should be called only when CONFIG_CROS_EC is enabled. Signed-off-by: Bin Meng <[email protected]> Acked-by: Simon Glass <[email protected]>
-rw-r--r--board/coreboot/coreboot/coreboot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/coreboot/coreboot/coreboot.c b/board/coreboot/coreboot/coreboot.c
index 154faf62393..e076ea69cfa 100644
--- a/board/coreboot/coreboot/coreboot.c
+++ b/board/coreboot/coreboot/coreboot.c
@@ -10,8 +10,10 @@
int arch_early_init_r(void)
{
+#ifdef CONFIG_CROS_EC
if (cros_ec_board_init())
return -1;
+#endif
return 0;
}