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
|
@ -8,16 +8,16 @@
|
|||
#include <stddef.h>
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <drivers/flash.h>
|
||||
#include <storage/flash_map.h>
|
||||
#include <zephyr.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/drivers/flash.h>
|
||||
#include <zephyr/storage/flash_map.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <sys/__assert.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/__assert.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "bootutil/bootutil_public.h"
|
||||
#include <dfu/mcuboot.h>
|
||||
#include <zephyr/dfu/mcuboot.h>
|
||||
|
||||
#include "mcuboot_priv.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue