summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/system.c
diff options
context:
space:
mode:
authorJett Rink <jettrink@chromium.org>2020-11-05 14:49:04 -0700
committerCommit Bot <commit-bot@chromium.org>2020-11-09 19:13:19 +0000
commit4d3243b69375f20f6e61bcc73f03cb10510457b3 (patch)
tree9a64836f224f49ebf73bc42af07751fe930756d9 /zephyr/shim/src/system.c
parent1b4e189e44379cf1db7639f2549441a8d678a978 (diff)
downloadchrome-ec-4d3243b69375f20f6e61bcc73f03cb10510457b3.tar.gz
cleanup: follow header include style
In order to align with go/zephyr-shim-how-to, update all of the platform/ec header files to use "quotes" and only use <brackets> for zephyr header files. Also include an empty line between the two. BRANCH=none BUG=none TEST=all zephyr tests build and pass; build volteer Signed-off-by: Jett Rink <jettrink@chromium.org> Change-Id: I27c275c24aa4f8eb40e100b07517b60f548f06cf Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2521594 Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'zephyr/shim/src/system.c')
-rw-r--r--zephyr/shim/src/system.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/zephyr/shim/src/system.c b/zephyr/shim/src/system.c
index d9b199e917..8ab1ac3b15 100644
--- a/zephyr/shim/src/system.c
+++ b/zephyr/shim/src/system.c
@@ -3,13 +3,14 @@
* found in the LICENSE file.
*/
+#include <errno.h>
+#include <string.h>
+#include <sys/util.h>
+
#include "config.h"
#include "ec_commands.h"
#include "sysjump.h"
#include "system.h"
-#include <sys/util.h>
-#include <string.h>
-#include <errno.h>
/* Ongoing actions preventing going into deep-sleep mode. */
uint32_t sleep_mask;