From b5279249544c6ad261991a2f4c20bb05376522d4 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 4 May 2015 11:31:09 -0600 Subject: sandbox: cros_ec: Support EC_CMD_ENTERING_MODE emulation Emualate this function which is used with Chrome OS verified boot. Signed-off-by: Simon Glass --- drivers/misc/cros_ec_sandbox.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'drivers/misc/cros_ec_sandbox.c') diff --git a/drivers/misc/cros_ec_sandbox.c b/drivers/misc/cros_ec_sandbox.c index df41e82..7509612 100644 --- a/drivers/misc/cros_ec_sandbox.c +++ b/drivers/misc/cros_ec_sandbox.c @@ -459,6 +459,8 @@ 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: + break; default: printf(" ** Unknown EC command %#02x\n", req_hdr->command); return -1; -- cgit v1.1