subsystems: migrate includes to <zephyr/...>

In order to bring consistency in-tree, migrate all subsystems code to
the new prefix <zephyr/...>. Note that the conversion has been scripted,
refer to zephyrproject-rtos#45388 for more details.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-05-06 11:12:04 +02:00 committed by Carles Cufí
commit 5113c1418d
726 changed files with 2931 additions and 2931 deletions

View file

@ -7,17 +7,17 @@
#define LOG_MODULE_NAME STREAM_FLASH
#define LOG_LEVEL CONFIG_STREAM_FLASH_LOG_LEVEL
#include <logging/log.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(LOG_MODULE_NAME, CONFIG_STREAM_FLASH_LOG_LEVEL);
#include <zephyr/types.h>
#include <string.h>
#include <drivers/flash.h>
#include <zephyr/drivers/flash.h>
#include <storage/stream_flash.h>
#include <zephyr/storage/stream_flash.h>
#ifdef CONFIG_STREAM_FLASH_PROGRESS
#include <settings/settings.h>
#include <zephyr/settings/settings.h>
static int settings_direct_loader(const char *key, size_t len,
settings_read_cb read_cb, void *cb_arg,