summaryrefslogtreecommitdiff
path: root/zephyr/shim/core
diff options
context:
space:
mode:
authorFabio Baltieri <fabiobaltieri@google.com>2022-05-09 21:58:18 +0100
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-05-16 20:01:19 +0000
commitf902bdfe07603c0c414dcebc2b48c764bdf4b327 (patch)
tree085aa729b3cc249622cf6154386b2ab20f838a00 /zephyr/shim/core
parent61a19d0fa6929839121d23647e270ac0e887c66c (diff)
downloadchrome-ec-f902bdfe07603c0c414dcebc2b48c764bdf4b327.tar.gz
zephyr: fix last missing zephyr/ include paths
Fix few more leftover #include that are stopping the code from compiling with LEGACY_INCLUDE_PATH=n. BRANCH=none BUG=none TEST=zmake build brya # with LEGACY_INCLUDE_PATH=n TEST=zmake build nivviks # with LEGACY_INCLUDE_PATH=n TEST=zmake build corsola # with LEGACY_INCLUDE_PATH=n TEST=zmake build kingler # with LEGACY_INCLUDE_PATH=n TEST=zmake build herobrine # with LEGACY_INCLUDE_PATH=n TEST=zmake build lazor # with LEGACY_INCLUDE_PATH=n TEST=zmake build skyrim # with LEGACY_INCLUDE_PATH=n Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com> Change-Id: I6520d437d351434a43755dad51598747b57238fa Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3637579 Reviewed-by: Yuval Peress <peress@google.com>
Diffstat (limited to 'zephyr/shim/core')
-rw-r--r--zephyr/shim/core/cortex-m/mpu.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/zephyr/shim/core/cortex-m/mpu.c b/zephyr/shim/core/cortex-m/mpu.c
index 5c0c3df6bd..c798a2a446 100644
--- a/zephyr/shim/core/cortex-m/mpu.c
+++ b/zephyr/shim/core/cortex-m/mpu.c
@@ -3,13 +3,14 @@
* found in the LICENSE file.
*/
-#include "config.h"
-#include "mpu.h"
-#include "logging/log.h"
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h>
#include <zephyr/arch/cpu.h>
#include <zephyr/init.h>
+#include "config.h"
+#include "mpu.h"
+
+#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(shim_mpu, LOG_LEVEL_ERR);
void mpu_enable(void)