kernel: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all kernel 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
6388778fb1
commit
cffefc818d
45 changed files with 258 additions and 258 deletions
|
@ -11,30 +11,30 @@
|
|||
* This module contains routines that are used to initialize the kernel.
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <offsets_short.h>
|
||||
#include <kernel.h>
|
||||
#include <sys/printk.h>
|
||||
#include <debug/stack.h>
|
||||
#include <random/rand32.h>
|
||||
#include <linker/sections.h>
|
||||
#include <toolchain.h>
|
||||
#include <kernel_structs.h>
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <linker/linker-defs.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#include <zephyr/debug/stack.h>
|
||||
#include <zephyr/random/rand32.h>
|
||||
#include <zephyr/linker/sections.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/kernel_structs.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/linker/linker-defs.h>
|
||||
#include <ksched.h>
|
||||
#include <string.h>
|
||||
#include <sys/dlist.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
#include <kernel_internal.h>
|
||||
#include <drivers/entropy.h>
|
||||
#include <logging/log_ctrl.h>
|
||||
#include <tracing/tracing.h>
|
||||
#include <zephyr/drivers/entropy.h>
|
||||
#include <zephyr/logging/log_ctrl.h>
|
||||
#include <zephyr/tracing/tracing.h>
|
||||
#include <stdbool.h>
|
||||
#include <debug/gcov.h>
|
||||
#include <zephyr/debug/gcov.h>
|
||||
#include <kswap.h>
|
||||
#include <timing/timing.h>
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/timing/timing.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(os, CONFIG_KERNEL_LOG_LEVEL);
|
||||
|
||||
/* the only struct z_kernel instance */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue