diff options
author | Jeremy Bettis <jbettis@google.com> | 2022-11-22 16:07:09 -0700 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2022-11-29 22:17:20 +0000 |
commit | 599c438e80c634a580c33bfb431472cf36c1cad5 (patch) | |
tree | c8758ac487b656e949d82d4ebacd5df1ef8d1714 /common/usb_host_command.c | |
parent | e6da633c3840a90479a01224fcde04135408c787 (diff) | |
download | chrome-ec-599c438e80c634a580c33bfb431472cf36c1cad5.tar.gz |
common: Sort header files
Sort all includes in common with the clang-format rules used by
the zephyr project.
BRANCH=None
BUG=b:247100970
TEST=zmake build -a
TEST=./twister --clobber -v -i
TEST=make -j72 buildall_only runtests
TEST=zmake compare-builds -a
Signed-off-by: Jeremy Bettis <jbettis@google.com>
Change-Id: I70c2ed7bb2ce50c968f3e2dbdc274de3a455129a
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4049889
Auto-Submit: Jeremy Bettis <jbettis@chromium.org>
Tested-by: Jeremy Bettis <jbettis@chromium.org>
Code-Coverage: Zoss <zoss-cl-coverage@prod.google.com>
Commit-Queue: Jeremy Bettis <jbettis@chromium.org>
Reviewed-by: Tomasz Michalec <tmichalec@google.com>
Reviewed-by: Tom Hughes <tomhughes@chromium.org>
Diffstat (limited to 'common/usb_host_command.c')
-rw-r--r-- | common/usb_host_command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/usb_host_command.c b/common/usb_host_command.c index 83a6e24a7d..0aeff40d39 100644 --- a/common/usb_host_command.c +++ b/common/usb_host_command.c @@ -7,13 +7,13 @@ #include "console.h" #include "consumer.h" #include "ec_commands.h" -#include "queue_policies.h" #include "host_command.h" #include "printf.h" +#include "queue_policies.h" #include "system.h" +#include "usb-stream.h" #include "usb_api.h" #include "usb_hw.h" -#include "usb-stream.h" #include "util.h" #define CPUTS(outstr) cputs(CC_USB, outstr) |