diff options
author | Bin Meng | 2015-01-06 22:14:22 +0800 |
---|---|---|
committer | Simon Glass | 2015-01-13 07:25:04 -0800 |
commit | 48a223e4ba0a7fec5940cccf7950b656e4f7cbed (patch) | |
tree | 921034a84f103f086f6cdfe6dc75721c75aee7a6 /board/coreboot | |
parent | ade8127a7929c6394908e7debe89e297202b7efa (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 <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/coreboot')
-rw-r--r-- | board/coreboot/coreboot/coreboot.c | 2 |
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; } |