[U-Boot] [PATCH 12/16] cros_ec: Remove unused cros_ec_board_init() function

Simon Glass sjg at chromium.org
Tue Feb 24 14:24:07 CET 2015


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

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 common/cros_ec.c  | 5 -----
 include/cros_ec.h | 7 -------
 2 files changed, 12 deletions(-)

diff --git a/common/cros_ec.c b/common/cros_ec.c
index f9c74ca..7a4f785 100644
--- a/common/cros_ec.c
+++ b/common/cros_ec.c
@@ -28,11 +28,6 @@ struct cros_ec_dev *board_get_cros_ec_dev(void)
 	return dev_get_uclass_priv(dev);
 }
 
-int cros_ec_board_init(void)
-{
-	return 0;
-}
-
 int cros_ec_get_error(void)
 {
 	struct udevice *dev;
diff --git a/include/cros_ec.h b/include/cros_ec.h
index 850c09e..3b2be2c 100644
--- a/include/cros_ec.h
+++ b/include/cros_ec.h
@@ -363,13 +363,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
  *
  * This permits delayed reporting of the EC error if it failed during
-- 
2.2.0.rc0.207.ga3a616c



More information about the U-Boot mailing list