浏览代码

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>
Simon Glass 10 年之前
父节点
当前提交
7e0c77a2b8
共有 2 个文件被更改,包括 0 次插入12 次删除
  1. 0 5
      common/cros_ec.c
  2. 0 7
      include/cros_ec.h

+ 0 - 5
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;

+ 0 - 7
include/cros_ec.h

@@ -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
  *