summaryrefslogtreecommitdiff
path: root/chip/stm32/host_command_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/host_command_common.c')
-rw-r--r--chip/stm32/host_command_common.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/chip/stm32/host_command_common.c b/chip/stm32/host_command_common.c
index b39a298c64..10653a0711 100644
--- a/chip/stm32/host_command_common.c
+++ b/chip/stm32/host_command_common.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -17,8 +17,8 @@ static enum fp_transport_type curr_transport_type = FP_TRANSPORT_TYPE_UNKNOWN;
/*
* Get protocol information
*/
-static enum ec_status host_command_protocol_info(struct host_cmd_handler_args
- *args)
+static enum ec_status
+host_command_protocol_info(struct host_cmd_handler_args *args)
{
enum ec_status ret_status = EC_RES_INVALID_COMMAND;
@@ -39,8 +39,7 @@ static enum ec_status host_command_protocol_info(struct host_cmd_handler_args
return ret_status;
}
-DECLARE_HOST_COMMAND(EC_CMD_GET_PROTOCOL_INFO,
- host_command_protocol_info,
+DECLARE_HOST_COMMAND(EC_CMD_GET_PROTOCOL_INFO, host_command_protocol_info,
EC_VER_MASK(0));
#endif /* CONFIG_I2C_PERIPHERAL */