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

@ -6,10 +6,10 @@
#define DISABLE_SYSCALL_TRACING
#include <zephyr.h>
#include <zephyr/zephyr.h>
#include <tracing_test.h>
#include <tracing_test_syscall.h>
#include <tracing/tracing_format.h>
#include <zephyr/tracing/tracing_format.h>
void sys_trace_k_thread_switched_out(void)
{

View file

@ -5,8 +5,8 @@
*/
#ifndef ZEPHYR_TRACE_TEST_H
#define ZEPHYR_TRACE_TEST_H
#include <kernel.h>
#include <init.h>
#include <zephyr/kernel.h>
#include <zephyr/init.h>
#define sys_port_trace_k_thread_foreach_enter() sys_trace_k_thread_foreach_enter(user_cb, user_data)
#define sys_port_trace_k_thread_foreach_exit() sys_trace_k_thread_foreach_exit(user_cb, user_data)