diff options
author | Simon Glass <sjg@chromium.org> | 2015-03-26 09:29:35 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:15 -0600 |
commit | 3db02b1b318d0a6c67e673ff966c9095f67b7132 (patch) | |
tree | fcd2dde68b72017a1b19cd36a0062661218feaaa /board/samsung | |
parent | a5dec5a5c4470901580383e91764ba0c6f3832a6 (diff) |
exynos: cros_ec: Drop unnecessary init
Since driver model will probe the EC when it is first used, we do not
need to init it explicitly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/samsung')
-rw-r--r-- | board/samsung/common/board.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index 09798682117..9be295038b8 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -330,18 +330,6 @@ int board_late_init(void) } #endif -int arch_early_init_r(void) -{ -#ifdef CONFIG_CROS_EC - if (cros_ec_board_init()) { - printf("%s: Failed to init EC\n", __func__); - return 0; - } -#endif - - return 0; -} - #ifdef CONFIG_MISC_INIT_R int misc_init_r(void) { |