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

@ -16,14 +16,14 @@
* weak functions so they can be overridden by the driver.
*/
#include <kernel.h>
#include <zephyr/kernel.h>
#include <string.h>
#include <toolchain.h>
#include <sys/__assert.h>
#include <sys/check.h>
#include <sys/util.h>
#include <zephyr/toolchain.h>
#include <zephyr/sys/__assert.h>
#include <zephyr/sys/check.h>
#include <zephyr/sys/util.h>
#include <drivers/mm/system_mm.h>
#include <zephyr/drivers/mm/system_mm.h>
#include "mm_drv_common.h"

View file

@ -7,10 +7,10 @@
#ifndef ZEPHYR_DRIVERS_SYSTEM_MM_DRV_COMMON_H_
#define ZEPHYR_DRIVERS_SYSTEM_MM_DRV_COMMON_H_
#include <kernel.h>
#include <toolchain.h>
#include <zephyr/kernel.h>
#include <zephyr/toolchain.h>
#include <drivers/mm/system_mm.h>
#include <zephyr/drivers/mm/system_mm.h>
extern struct k_spinlock sys_mm_drv_common_lock;

View file

@ -22,18 +22,18 @@
#define DT_DRV_COMPAT intel_adsp_tlb
#include <device.h>
#include <kernel.h>
#include <spinlock.h>
#include <sys/__assert.h>
#include <sys/check.h>
#include <sys/mem_manage.h>
#include <sys/util.h>
#include <zephyr/device.h>
#include <zephyr/kernel.h>
#include <zephyr/spinlock.h>
#include <zephyr/sys/__assert.h>
#include <zephyr/sys/check.h>
#include <zephyr/sys/mem_manage.h>
#include <zephyr/sys/util.h>
#include <soc.h>
#include <cavs-mem.h>
#include <drivers/mm/system_mm.h>
#include <zephyr/drivers/mm/system_mm.h>
#include "mm_drv_common.h"
DEVICE_MMIO_TOPLEVEL_STATIC(tlb_regs, DT_DRV_INST(0));