summaryrefslogtreecommitdiff
path: root/common/keyboard_mkbp.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/keyboard_mkbp.c')
-rw-r--r--common/keyboard_mkbp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/keyboard_mkbp.c b/common/keyboard_mkbp.c
index c39028cfbc..ff7ddc4d5c 100644
--- a/common/keyboard_mkbp.c
+++ b/common/keyboard_mkbp.c
@@ -448,7 +448,7 @@ static uint32_t get_supported_switches(void)
return val;
}
-static int mkbp_get_info(struct host_cmd_handler_args *args)
+static enum ec_status mkbp_get_info(struct host_cmd_handler_args *args)
{
const struct ec_params_mkbp_info *p = args->params;
@@ -679,7 +679,8 @@ static void keyscan_copy_config(const struct ec_mkbp_config *src,
dst->flags = new_flags;
}
-static int host_command_mkbp_set_config(struct host_cmd_handler_args *args)
+static enum ec_status
+host_command_mkbp_set_config(struct host_cmd_handler_args *args)
{
const struct ec_params_mkbp_set_config *req = args->params;
@@ -693,7 +694,8 @@ DECLARE_HOST_COMMAND(EC_CMD_MKBP_SET_CONFIG,
host_command_mkbp_set_config,
EC_VER_MASK(0));
-static int host_command_mkbp_get_config(struct host_cmd_handler_args *args)
+static enum ec_status
+host_command_mkbp_get_config(struct host_cmd_handler_args *args)
{
struct ec_response_mkbp_get_config *resp = args->response;
struct ec_mkbp_config *dst = &resp->config;