mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
cros_ec: Drop cros_ec_entering_mode()
This function is not needed anymore. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
201efb2bb0
commit
1e465eb669
3 changed files with 0 additions and 23 deletions
|
@ -754,17 +754,6 @@ int cros_ec_flash_protect(struct udevice *dev, uint32_t set_mask,
|
|||
return 0;
|
||||
}
|
||||
|
||||
int cros_ec_entering_mode(struct udevice *dev, int mode)
|
||||
{
|
||||
int rc;
|
||||
|
||||
rc = ec_command(dev, EC_CMD_ENTERING_MODE, 0, &mode, sizeof(mode),
|
||||
NULL, 0);
|
||||
if (rc)
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cros_ec_check_version(struct udevice *dev)
|
||||
{
|
||||
struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
|
||||
|
|
|
@ -496,9 +496,6 @@ static int process_cmd(struct ec_state *ec,
|
|||
case EC_CMD_MKBP_STATE:
|
||||
len = cros_ec_keyscan(ec, resp_data);
|
||||
break;
|
||||
case EC_CMD_ENTERING_MODE:
|
||||
len = 0;
|
||||
break;
|
||||
case EC_CMD_GET_NEXT_EVENT: {
|
||||
struct ec_response_get_next_event *resp = resp_data;
|
||||
|
||||
|
|
|
@ -198,15 +198,6 @@ int cros_ec_flash_protect(struct udevice *dev, uint32_t set_mask,
|
|||
uint32_t set_flags,
|
||||
struct ec_response_flash_protect *resp);
|
||||
|
||||
/**
|
||||
* Notify EC of current boot mode
|
||||
*
|
||||
* @param dev CROS-EC device
|
||||
* @param vboot_mode Verified boot mode
|
||||
* @return 0 if ok, <0 on error
|
||||
*/
|
||||
int cros_ec_entering_mode(struct udevice *dev, int mode);
|
||||
|
||||
/**
|
||||
* Run internal tests on the cros_ec interface.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue