include: add more missing zephyr/ prefixes
Adds few missing zephyr/ prefixes to leftover #include statements that either got added recently or were using double quote format. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
parent
26b59d6d17
commit
e24314f10f
96 changed files with 134 additions and 134 deletions
|
@ -11,7 +11,7 @@
|
|||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/drivers/bluetooth/hci_driver.h>
|
||||
#include "bluetooth/addr.h"
|
||||
#include <zephyr/bluetooth/addr.h>
|
||||
#include <zephyr/drivers/clock_control/stm32_clock_control.h>
|
||||
|
||||
#include "app_conf.h"
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <drivers/clock_control.h>
|
||||
#include <sys/util.h>
|
||||
#include <drivers/clock_control/stm32_clock_control.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/drivers/clock_control/stm32_clock_control.h>
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <soc.h>
|
||||
|
||||
#define DT_DRV_COMPAT st_stm32_clock_mux
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include "init.h"
|
||||
#include "kernel.h"
|
||||
#include "console/console.h"
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/console/console.h>
|
||||
#include "posix_board_if.h"
|
||||
#include <string.h>
|
||||
#include <sys/time.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <zephyr/sys/atomic.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#ifdef CONFIG_UART_CONSOLE_MCUMGR
|
||||
#include "mgmt/mcumgr/serial.h"
|
||||
#include <zephyr/mgmt/mcumgr/serial.h>
|
||||
#endif
|
||||
|
||||
static const struct device *uart_console_dev;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "drivers/dma.h"
|
||||
#include <zephyr/drivers/dma.h>
|
||||
#define DT_DRV_COMPAT intel_cavs_gpdma
|
||||
|
||||
#define GPDMA_CTL_OFFSET 0x0004
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
|
||||
#define DT_DRV_COMPAT zephyr_native_posix_rng
|
||||
|
||||
#include "device.h"
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/entropy.h>
|
||||
#include "init.h"
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <gpio_imx.h>
|
||||
#include <string.h>
|
||||
#ifdef CONFIG_PINCTRL
|
||||
#include <drivers/pinctrl.h>
|
||||
#include <zephyr/drivers/pinctrl.h>
|
||||
#endif
|
||||
|
||||
#include "gpio_utils.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <zephyr/drivers/pwm.h>
|
||||
#include <soc.h>
|
||||
#include <device_imx.h>
|
||||
#include <drivers/pinctrl.h>
|
||||
#include <zephyr/drivers/pinctrl.h>
|
||||
|
||||
#define LOG_LEVEL CONFIG_PWM_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "fdc2x1x.h"
|
||||
#include "drivers/sensor/fdc2x1x.h"
|
||||
#include <zephyr/drivers/sensor/fdc2x1x.h>
|
||||
|
||||
LOG_MODULE_REGISTER(FDC2X1X, CONFIG_SENSOR_LOG_LEVEL);
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <zephyr/init.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
#include <uart_imx.h>
|
||||
#include <drivers/pinctrl.h>
|
||||
#include <zephyr/drivers/pinctrl.h>
|
||||
|
||||
#define UART_STRUCT(dev) \
|
||||
((UART_Type *)((const struct imx_uart_config *const)(dev)->config)->base)
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <errno.h>
|
||||
#include <fsl_uart.h>
|
||||
#include <soc.h>
|
||||
#include <drivers/pinctrl.h>
|
||||
#include <zephyr/drivers/pinctrl.h>
|
||||
|
||||
struct mcux_iuart_config {
|
||||
UART_Type *base;
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
* POSIX arch and InfClock SOC
|
||||
*/
|
||||
#include "zephyr/types.h"
|
||||
#include "irq.h"
|
||||
#include "device.h"
|
||||
#include <zephyr/irq.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/timer/system_timer.h>
|
||||
#include "sys_clock.h"
|
||||
#include <zephyr/sys_clock.h>
|
||||
#include "timer_model.h"
|
||||
#include "soc.h"
|
||||
#include <zephyr/arch/posix/posix_trace.h>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <zephyr/usb/usb_device.h>
|
||||
#include "usb_dw_registers.h"
|
||||
#include <soc.h>
|
||||
#include <devicetree.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#define LOG_LEVEL CONFIG_USB_DRIVER_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(usb_dc_dw);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue