diff options
author | Jeremy Bettis <jbettis@google.com> | 2022-11-23 15:28:01 -0700 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2022-11-29 22:25:16 +0000 |
commit | 88684b2a25d0349bcd57cdba2a5aadb60d7bef07 (patch) | |
tree | 536f7547b233b9b6ef0a3d3506109f845a7e2f87 /chip/stm32/uart.c | |
parent | 599c438e80c634a580c33bfb431472cf36c1cad5 (diff) | |
download | chrome-ec-88684b2a25d0349bcd57cdba2a5aadb60d7bef07.tar.gz |
chip: Sort header files
Sort all includes in chip 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: I13454e38fa3766aa0ba26a058075f51965b8462e
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4053346
Code-Coverage: Zoss <zoss-cl-coverage@prod.google.com>
Commit-Queue: Jeremy Bettis <jbettis@chromium.org>
Tested-by: Jeremy Bettis <jbettis@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'chip/stm32/uart.c')
-rw-r--r-- | chip/stm32/uart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chip/stm32/uart.c b/chip/stm32/uart.c index 1bb961a935..916cb2257a 100644 --- a/chip/stm32/uart.c +++ b/chip/stm32/uart.c @@ -5,17 +5,17 @@ /* USART driver for Chrome EC */ -#include "common.h" #include "clock.h" +#include "common.h" #include "dma.h" #include "gpio.h" #include "hooks.h" #include "registers.h" +#include "stm32-dma.h" #include "system.h" #include "task.h" #include "uart.h" #include "util.h" -#include "stm32-dma.h" /* Console USART index */ #define UARTN CONFIG_UART_CONSOLE |