summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaureen Helm <maureen.helm@intel.com>2022-03-04 08:32:50 -0600
committerDamien George <damien@micropython.org>2022-03-07 16:48:35 +1100
commit86a4a526700ad40b2e37e33c7ae08826cff2a6ac (patch)
treef880f7750c0650d9a92795171f09c62d4e0c7984
parentbf01671a96b454340a176d27696d575e2a93ad7c (diff)
zephyr: Update include path to disk_access.h.
The disk_access header was moved to a different path in Zephyr v2.6.0. The old path was deprecated for two releases (v2.6.0 and v2.7.0) and will no longer be supported after Zephyr v2.7.0. Signed-off-by: Maureen Helm <maureen.helm@intel.com>
-rw-r--r--ports/zephyr/zephyr_storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/zephyr/zephyr_storage.c b/ports/zephyr/zephyr_storage.c
index 1c25b3277..5934f2281 100644
--- a/ports/zephyr/zephyr_storage.c
+++ b/ports/zephyr/zephyr_storage.c
@@ -32,7 +32,7 @@
#endif
#ifdef CONFIG_DISK_ACCESS
-#include <disk/disk_access.h>
+#include <storage/disk_access.h>
#endif
#ifdef CONFIG_FLASH_MAP