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:
parent
3702f7220a
commit
5113c1418d
726 changed files with 2931 additions and 2931 deletions
|
@ -6,15 +6,15 @@
|
|||
|
||||
#include <string.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/__assert.h>
|
||||
#include <sys/util.h>
|
||||
#include <init.h>
|
||||
#include <storage/disk_access.h>
|
||||
#include <zephyr/sys/__assert.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/storage/disk_access.h>
|
||||
#include <errno.h>
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_DISK_LOG_LEVEL
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(disk);
|
||||
|
||||
/* list of mounted file systems */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue