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:20:22 +02:00 committed by Stephanos Ioannidis
parent 9237454a30
commit a30531af3a
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
#include <ff.h>
#include <diskio.h> /* FatFs lower layer API */
#include <ffconf.h>
#include <storage/disk_access.h>
#include <zephyr/storage/disk_access.h>
static const char* const pdrv_str[] = {FF_VOLUME_STRS};