drivers: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all drivers to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to #45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
cbd31d720b
commit
fb60aab245
1118 changed files with 4745 additions and 4745 deletions
|
@ -24,18 +24,18 @@
|
|||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <kernel.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <soc.h>
|
||||
|
||||
#include <init.h>
|
||||
#include <toolchain.h>
|
||||
#include <linker/sections.h>
|
||||
#include <drivers/uart.h>
|
||||
#include <pm/policy.h>
|
||||
#include <sys/sys_io.h>
|
||||
#include <spinlock.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/linker/sections.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
#include <zephyr/pm/policy.h>
|
||||
#include <zephyr/sys/sys_io.h>
|
||||
#include <zephyr/spinlock.h>
|
||||
|
||||
#include "uart_ns16550.h"
|
||||
|
||||
|
@ -53,7 +53,7 @@
|
|||
|
||||
#if DT_ANY_INST_ON_BUS_STATUS_OKAY(pcie)
|
||||
BUILD_ASSERT(IS_ENABLED(CONFIG_PCIE), "NS16550(s) in DT need CONFIG_PCIE");
|
||||
#include <drivers/pcie/pcie.h>
|
||||
#include <zephyr/drivers/pcie/pcie.h>
|
||||
#endif
|
||||
|
||||
/* register definitions */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue