summaryrefslogtreecommitdiff
path: root/common/usb_host_command.c
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2022-06-27 14:40:23 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-01 10:49:28 +0000
commit067760b8faefe131eeac9eb2364d0316e438daaf (patch)
treea9f540dc1906b84331c963cc25bc728a0221ded5 /common/usb_host_command.c
parentb6468e2e9ddaf1df778195f09f7de67cdd5e1b05 (diff)
downloadchrome-ec-067760b8faefe131eeac9eb2364d0316e438daaf.tar.gz
common/usb_host_command.c: Format with clang-format
BUG=b:236386294 BRANCH=none TEST=none Change-Id: I9e853198dc9980e249420f633dbdd58ac5dbee85 Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3729768 Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'common/usb_host_command.c')
-rw-r--r--common/usb_host_command.c43
1 files changed, 16 insertions, 27 deletions
diff --git a/common/usb_host_command.c b/common/usb_host_command.c
index ccae57dd43..e4872750dd 100644
--- a/common/usb_host_command.c
+++ b/common/usb_host_command.c
@@ -16,7 +16,7 @@
#include "util.h"
#define CPUTS(outstr) cputs(CC_USB, outstr)
-#define CPRINTS(format, args...) cprints(CC_HOSTCMD, "USBHC: " format, ## args)
+#define CPRINTS(format, args...) cprints(CC_HOSTCMD, "USBHC: " format, ##args)
enum usbhc_state {
/* Not enabled (initial state, and when chipset is off) */
@@ -38,26 +38,16 @@ struct producer const hostcmd_producer;
struct usb_stream_config const usbhc_stream;
/* RX (Host->EC) queue */
-static struct queue const usb_to_hostcmd = QUEUE_DIRECT(64,
- uint8_t,
- usbhc_stream.producer,
- hostcmd_consumer);
+static struct queue const usb_to_hostcmd =
+ QUEUE_DIRECT(64, uint8_t, usbhc_stream.producer, hostcmd_consumer);
/* TX (EC->Host) queue */
-static struct queue const hostcmd_to_usb = QUEUE_DIRECT(64,
- uint8_t,
- hostcmd_producer,
- usbhc_stream.consumer);
-
-USB_STREAM_CONFIG_FULL(usbhc_stream,
- USB_IFACE_HOSTCMD,
- USB_CLASS_VENDOR_SPEC,
- USB_SUBCLASS_GOOGLE_HOSTCMD,
- USB_PROTOCOL_GOOGLE_HOSTCMD,
- USB_STR_HOSTCMD_NAME,
- USB_EP_HOSTCMD,
- USB_MAX_PACKET_SIZE,
- USB_MAX_PACKET_SIZE,
- usb_to_hostcmd,
+static struct queue const hostcmd_to_usb =
+ QUEUE_DIRECT(64, uint8_t, hostcmd_producer, usbhc_stream.consumer);
+
+USB_STREAM_CONFIG_FULL(usbhc_stream, USB_IFACE_HOSTCMD, USB_CLASS_VENDOR_SPEC,
+ USB_SUBCLASS_GOOGLE_HOSTCMD, USB_PROTOCOL_GOOGLE_HOSTCMD,
+ USB_STR_HOSTCMD_NAME, USB_EP_HOSTCMD,
+ USB_MAX_PACKET_SIZE, USB_MAX_PACKET_SIZE, usb_to_hostcmd,
hostcmd_to_usb)
static uint8_t in_msg[USBHC_MAX_REQUEST_SIZE];
@@ -94,7 +84,7 @@ static void usbhc_read(struct producer const *producer, size_t count)
struct producer const hostcmd_producer = {
.queue = &hostcmd_to_usb,
- .ops = &((struct producer_ops const) {
+ .ops = &((struct producer_ops const){
.read = usbhc_read,
}),
};
@@ -229,7 +219,7 @@ static void usbhc_written(struct consumer const *consumer, size_t count)
block_index += count;
if (block_index < expected_size)
- return; /* More to come. */
+ return; /* More to come. */
if (IS_ENABLED(DEBUG))
CPRINTS("Rx complete (%d bytes)", block_index);
@@ -247,13 +237,13 @@ static void usbhc_written(struct consumer const *consumer, size_t count)
struct consumer const hostcmd_consumer = {
.queue = &usb_to_hostcmd,
- .ops = &((struct consumer_ops const) {
+ .ops = &((struct consumer_ops const){
.written = usbhc_written,
}),
};
-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)
{
struct ec_response_get_protocol_info *r = args->response;
@@ -267,6 +257,5 @@ static enum ec_status host_command_protocol_info(
return EC_RES_SUCCESS;
}
-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));