zephyr: update include paths to use <zephyr/...>

Zephyr has prefixed all of its includes with <zephyr/...>. While the old
mode can still be used (CONFIG_LEGACY_INCLUDE_PATH) and is still enabled
by default, it's better to be prepared for its removal in the future.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2022-05-10 15:17:32 +02:00 committed by Stephanos Ioannidis
parent 7b2cf4ba75
commit 652f2c5646
1 changed files with 1 additions and 1 deletions

2
lfs.c
View File

@ -8,7 +8,7 @@
#include "lfs_util.h"
#ifdef __ZEPHYR__
#include <logging/log.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(littlefs, CONFIG_FS_LOG_LEVEL);
#endif