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
|
@ -6,8 +6,8 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <device.h>
|
||||
#include <drivers/fpga.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/fpga.h>
|
||||
#include "fpga_eos_s3.h"
|
||||
|
||||
void eos_s3_fpga_enable_clk(void)
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/printk.h>
|
||||
#include <shell/shell.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#include <zephyr/shell/shell.h>
|
||||
#include <version.h>
|
||||
#include <stdlib.h>
|
||||
#include <drivers/fpga.h>
|
||||
#include <zephyr/drivers/fpga.h>
|
||||
|
||||
static int parse_common_args(const struct shell *sh, char **argv,
|
||||
const struct device **dev)
|
||||
|
|
|
@ -6,16 +6,16 @@
|
|||
|
||||
#define DT_DRV_COMPAT xlnx_fpga
|
||||
|
||||
#include <device.h>
|
||||
#include <drivers/fpga.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/fpga.h>
|
||||
#include "fpga_zynqmp.h"
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(fpga_zynqmp);
|
||||
|
||||
static void power_up_fpga(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue