summaryrefslogtreecommitdiff
path: root/util/comm-host.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/comm-host.h')
-rw-r--r--util/comm-host.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/util/comm-host.h b/util/comm-host.h
index bd22655e57..907df3df96 100644
--- a/util/comm-host.h
+++ b/util/comm-host.h
@@ -1,4 +1,4 @@
-/* Copyright 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
@@ -63,9 +63,12 @@ int comm_init_buffer(void);
* Send a command to the EC. Returns the length of output data returned (0 if
* none), or negative on error.
*/
-int ec_command(int command, int version,
- const void *outdata, int outsize, /* to the EC */
- void *indata, int insize); /* from the EC */
+int ec_command(int command, int version, const void *outdata,
+ int outsize, /* to
+ the
+ EC
+ */
+ void *indata, int insize); /* from the EC */
/**
* Set the offset to be applied to the command number when ec_command() calls
@@ -79,9 +82,9 @@ void set_command_offset(int offset);
* by the protocol-specific driver. DO NOT call this version directly from
* anywhere but ec_command(), or the --device option will not work.
*/
-extern int (*ec_command_proto)(int command, int version,
- const void *outdata, int outsize, /* to EC */
- void *indata, int insize); /* from EC */
+extern int (*ec_command_proto)(int command, int version, const void *outdata,
+ int outsize, /* to EC */
+ void *indata, int insize); /* from EC */
/**
* Return the content of the EC information area mapped as "memory".