summaryrefslogtreecommitdiff
path: root/chip/stm32/flash-stm32f3.c
diff options
context:
space:
mode:
authorJeremy Bettis <jbettis@google.com>2022-11-23 15:28:01 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-11-29 22:25:16 +0000
commit88684b2a25d0349bcd57cdba2a5aadb60d7bef07 (patch)
tree536f7547b233b9b6ef0a3d3506109f845a7e2f87 /chip/stm32/flash-stm32f3.c
parent599c438e80c634a580c33bfb431472cf36c1cad5 (diff)
downloadchrome-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/flash-stm32f3.c')
-rw-r--r--chip/stm32/flash-stm32f3.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/chip/stm32/flash-stm32f3.c b/chip/stm32/flash-stm32f3.c
index 8705e4d657..c41f9c526d 100644
--- a/chip/stm32/flash-stm32f3.c
+++ b/chip/stm32/flash-stm32f3.c
@@ -5,15 +5,16 @@
/* Flash memory module for stm32f3 and stm32f4 */
-#include <stdbool.h>
#include "common.h"
-#include "flash.h"
#include "flash-f.h"
#include "flash-regs.h"
+#include "flash.h"
#include "hooks.h"
+#include "panic.h"
#include "registers.h"
#include "system.h"
-#include "panic.h"
+
+#include <stdbool.h>
/*****************************************************************************/
/* Physical layer APIs */