1
0
Fork 0

x86: 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>
utp
Simon Glass 2015-03-26 09:29:34 -06:00
parent 06fbf10263
commit a5dec5a5c4
2 changed files with 0 additions and 8 deletions

View File

@ -10,11 +10,6 @@
int arch_early_init_r(void)
{
#ifdef CONFIG_CROS_EC
if (cros_ec_board_init())
return -1;
#endif
return 0;
}

View File

@ -22,9 +22,6 @@ int arch_early_init_r(void)
if (ret)
return ret;
if (cros_ec_board_init())
return -1;
return 0;
}