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:
Gerard Marull-Paretas 2022-05-06 10:25:46 +02:00 committed by Carles Cufí
commit fb60aab245
1118 changed files with 4745 additions and 4745 deletions

View file

@ -7,19 +7,19 @@
#define DT_DRV_COMPAT qemu_ivshmem
#define LOG_LEVEL CONFIG_IVSHMEM_LOG_LEVEL
#include <logging/log.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(ivshmem);
#include <errno.h>
#include <kernel.h>
#include <arch/cpu.h>
#include <zephyr/kernel.h>
#include <zephyr/arch/cpu.h>
#include <soc.h>
#include <device.h>
#include <init.h>
#include <zephyr/device.h>
#include <zephyr/init.h>
#include <drivers/virtualization/ivshmem.h>
#include <zephyr/drivers/virtualization/ivshmem.h>
#include "virt_ivshmem.h"
#ifdef CONFIG_IVSHMEM_DOORBELL

View file

@ -7,8 +7,8 @@
#ifndef ZEPHYR_DRIVERS_VIRTUALIZATION_VIRT_IVSHMEM_H_
#define ZEPHYR_DRIVERS_VIRTUALIZATION_VIRT_IVSHMEM_H_
#include <drivers/pcie/pcie.h>
#include <drivers/pcie/msi.h>
#include <zephyr/drivers/pcie/pcie.h>
#include <zephyr/drivers/pcie/msi.h>
#define IVSHMEM_VENDOR_ID 0x1AF4
#define IVSHMEM_DEVICE_ID 0x1110

View file

@ -4,8 +4,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <drivers/virtualization/ivshmem.h>
#include <syscall_handler.h>
#include <zephyr/drivers/virtualization/ivshmem.h>
#include <zephyr/syscall_handler.h>
#include <string.h>
static inline size_t z_vrfy_ivshmem_get_mem(const struct device *dev,

View file

@ -4,9 +4,9 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <shell/shell.h>
#include <zephyr/shell/shell.h>
#include <stdlib.h>
#include <drivers/virtualization/ivshmem.h>
#include <zephyr/drivers/virtualization/ivshmem.h>
static const struct device *ivshmem;