cros_ec: Remove unused cros_ec_board_init() function

Now that driver model handles cros_ec init, we can drop this special code.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2015-03-26 09:29:36 -06:00
parent 3db02b1b31
commit 7e0c77a2b8
2 changed files with 0 additions and 12 deletions

View File

@@ -362,13 +362,6 @@ int cros_ec_set_ldo(struct cros_ec_dev *dev, uint8_t index, uint8_t state);
*/
int cros_ec_get_ldo(struct cros_ec_dev *dev, uint8_t index, uint8_t *state);
/**
* Initialize the Chrome OS EC at board initialization time.
*
* @return 0 if ok, -ve on error
*/
int cros_ec_board_init(void);
/**
* Get access to the error reported when cros_ec_board_init() was called
*