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
|
@ -8,7 +8,7 @@
|
|||
#include "board_irq.h"
|
||||
|
||||
#ifdef CONFIG_IRQ_OFFLOAD
|
||||
#include "irq_offload.h"
|
||||
#include <zephyr/irq_offload.h>
|
||||
|
||||
void arch_irq_offload(irq_offload_routine_t routine, const void *parameter)
|
||||
{
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
#include "posix_arch_internal.h"
|
||||
#include <zephyr/arch/posix/posix_soc_if.h>
|
||||
#include "kernel_internal.h"
|
||||
#include "kernel_structs.h"
|
||||
#include <zephyr/kernel_structs.h>
|
||||
#include "ksched.h"
|
||||
#include "kswap.h"
|
||||
|
||||
|
|
|
@ -13,10 +13,10 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/kernel_structs.h>
|
||||
#include "posix_core.h"
|
||||
#include "irq.h"
|
||||
#include <zephyr/irq.h>
|
||||
#include "kswap.h"
|
||||
#include <zephyr/pm/pm.h>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef ZEPHYR_ARCH_POSIX_INCLUDE_POSIX_ARCH_INTERNAL_H_
|
||||
#define ZEPHYR_ARCH_POSIX_INCLUDE_POSIX_ARCH_INTERNAL_H_
|
||||
|
||||
#include "toolchain.h"
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#define PC_SAFE_CALL(a) pc_safe_call(a, #a)
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef ZEPHYR_ARCH_POSIX_INCLUDE_POSIX_CORE_H_
|
||||
#define ZEPHYR_ARCH_POSIX_INCLUDE_POSIX_CORE_H_
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include "xtensa/corebits.h"
|
||||
#include "xtensa_backtrace.h"
|
||||
#include "sys/printk.h"
|
||||
#include <zephyr/sys/printk.h>
|
||||
#if defined(CONFIG_SOC_ESP32)
|
||||
#include "soc/soc_memory_layout.h"
|
||||
#elif defined(CONFIG_SOC_FAMILY_INTEL_ADSP)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <soc.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#define HSDK_CREG_GPIO_MUX_REG 0xf0001484
|
||||
#define HSDK_CREG_GPIO_MUX_VAL 0x00000400
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
|
||||
#include "intel_socfpga_std/socfpga_cyclone5.dtsi"
|
||||
#include "dt-bindings/gpio/gpio.h"
|
||||
#include <zephyr/dt-bindings/gpio/gpio.h>
|
||||
|
||||
/ {
|
||||
model = "Altera SOCFPGA Cyclone V SoC Development Kit";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <dt-bindings/pinctrl/lpc11u6x-pinctrl.h>
|
||||
#include <zephyr/dt-bindings/pinctrl/lpc11u6x-pinctrl.h>
|
||||
|
||||
&pinctrl {
|
||||
uart0_default: uart0_default {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <dt-bindings/pinctrl/lpc11u6x-pinctrl.h>
|
||||
#include <zephyr/dt-bindings/pinctrl/lpc11u6x-pinctrl.h>
|
||||
|
||||
&pinctrl {
|
||||
uart0_default: uart0_default {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#ifndef BOARDS_POSIX_NATIVE_POSIX_BOARD_IRQ_H
|
||||
#define BOARDS_POSIX_NATIVE_POSIX_BOARD_IRQ_H
|
||||
|
||||
#include "sw_isr_table.h"
|
||||
#include <zephyr/sw_isr_table.h>
|
||||
#include "zephyr/types.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "hw_models_top.h"
|
||||
#include "timer_model.h"
|
||||
#include "cmdline.h"
|
||||
#include "toolchain.h"
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/arch/posix/posix_trace.h>
|
||||
#include "native_tracing.h"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "hw_models_top.h"
|
||||
#include "irq_ctrl.h"
|
||||
#include "irq_handler.h"
|
||||
#include "arch/posix/arch.h" /* for find_lsb_set() */
|
||||
#include <zephyr/arch/posix/arch.h> /* for find_lsb_set() */
|
||||
#include "board_soc.h"
|
||||
#include "posix_soc.h"
|
||||
#include "zephyr/types.h"
|
||||
|
|
|
@ -9,14 +9,14 @@
|
|||
|
||||
#include <stdint.h>
|
||||
#include "irq_handler.h"
|
||||
#include "irq_offload.h"
|
||||
#include "kernel_structs.h"
|
||||
#include <zephyr/irq_offload.h>
|
||||
#include <zephyr/kernel_structs.h>
|
||||
#include "kernel_internal.h"
|
||||
#include "kswap.h"
|
||||
#include "irq_ctrl.h"
|
||||
#include "posix_core.h"
|
||||
#include "board_soc.h"
|
||||
#include "sw_isr_table.h"
|
||||
#include <zephyr/sw_isr_table.h>
|
||||
#include "soc.h"
|
||||
#include <zephyr/tracing/tracing.h>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#ifndef BOARDS_POSIX_NRF52_BSIM_BOARD_IRQ_H
|
||||
#define BOARDS_POSIX_NRF52_BSIM_BOARD_IRQ_H
|
||||
|
||||
#include "sw_isr_table.h"
|
||||
#include <zephyr/sw_isr_table.h>
|
||||
#include "zephyr/types.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <stdbool.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <stddef.h>
|
||||
#include "irq.h"
|
||||
#include <zephyr/irq.h>
|
||||
#include "irq_sources.h"
|
||||
#include <nrfx.h>
|
||||
#include "cmsis.h"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include "init.h"
|
||||
#include <zephyr/init.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include "bs_types.h"
|
||||
|
|
|
@ -7,14 +7,14 @@
|
|||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include "irq_offload.h"
|
||||
#include "kernel_structs.h"
|
||||
#include <zephyr/irq_offload.h>
|
||||
#include <zephyr/kernel_structs.h>
|
||||
#include "kernel_internal.h"
|
||||
#include "kswap.h"
|
||||
#include "irq_ctrl.h"
|
||||
#include "posix_core.h"
|
||||
#include "board_soc.h"
|
||||
#include "sw_isr_table.h"
|
||||
#include <zephyr/sw_isr_table.h>
|
||||
#include "soc.h"
|
||||
#include "bs_tracing.h"
|
||||
#include <zephyr/tracing/tracing.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <dt-bindings/display/ili9xxx.h>
|
||||
#include <zephyr/dt-bindings/display/ili9xxx.h>
|
||||
|
||||
/ {
|
||||
chosen {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <dt-bindings/display/ili9xxx.h>
|
||||
#include <zephyr/dt-bindings/display/ili9xxx.h>
|
||||
|
||||
/ {
|
||||
chosen {
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
* heavily modified for Zephyr
|
||||
*/
|
||||
|
||||
#include <dt-bindings/i2c/i2c.h>
|
||||
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
||||
#include <zephyr/dt-bindings/i2c/i2c.h>
|
||||
#include <zephyr/dt-bindings/interrupt-controller/arm-gic.h>
|
||||
|
||||
/ {
|
||||
#address-cells = <1>;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_
|
||||
#define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "sys/stat.h"
|
||||
#ifdef CONFIG_NETWORKING
|
||||
/* For zsock_gethostname() */
|
||||
#include "net/socket.h"
|
||||
#include <zephyr/net/socket.h>
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_POSIX_API
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
* Example to use LCD Display in Cyclone V SoC FPGA devkit
|
||||
*/
|
||||
|
||||
#include <sys/printk.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <drivers/i2c.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include "commands.h"
|
||||
#define I2C_INST DT_NODELABEL(i2c0)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/zephyr.h>
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <zephyr/device.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/drivers/sensor.h>
|
||||
#include "drivers/sensor/fdc2x1x.h"
|
||||
#include <zephyr/drivers/sensor/fdc2x1x.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define CH_BUF_INIT(m) {},
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
* creating function to reserve the vector memory area
|
||||
*/
|
||||
|
||||
#include <device.h>
|
||||
#include <devicetree.h>
|
||||
#include <init.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <mmu.h>
|
||||
#include <arch/arm/aarch32/mmu/arm_mmu.h>
|
||||
#include <zephyr/arch/arm/aarch32/mmu/arm_mmu.h>
|
||||
#include "soc.h"
|
||||
|
||||
void arch_reserved_pages_update(void)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef ZEPHYR_SOC_ARM_NXP_MIMX8MQ6_M4_PINCTRL_SOC_H_
|
||||
#define ZEPHYR_SOC_ARM_NXP_MIMX8MQ6_M4_PINCTRL_SOC_H_
|
||||
|
||||
#include <devicetree.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/types.h>
|
||||
#include "fsl_common.h"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "esp_spi_flash.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp32/spiram.h"
|
||||
#include "sys/printk.h"
|
||||
#include <zephyr/sys/printk.h>
|
||||
|
||||
/*
|
||||
* This is written in C rather than assembly since, during the port bring up,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "hal/cpu_ll.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp32s2/spiram.h"
|
||||
#include "sys/printk.h"
|
||||
#include <zephyr/sys/printk.h>
|
||||
|
||||
extern void rtc_clk_cpu_freq_set_xtal(void);
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "arch/xtensa/cache.h"
|
||||
#include <zephyr/arch/xtensa/cache.h>
|
||||
#include <zephyr/logging/log_backend.h>
|
||||
#include <zephyr/logging/log_core.h>
|
||||
#include <zephyr/logging/log_msg.h>
|
||||
|
|
|
@ -30,7 +30,7 @@ LOG_MODULE_REGISTER(hawkbit, CONFIG_HAWKBIT_LOG_LEVEL);
|
|||
|
||||
#include "hawkbit_priv.h"
|
||||
#include "hawkbit_device.h"
|
||||
#include "mgmt/hawkbit.h"
|
||||
#include <zephyr/mgmt/hawkbit.h>
|
||||
#include "hawkbit_firmware.h"
|
||||
|
||||
#if defined(CONFIG_NET_SOCKETS_SOCKOPT_TLS)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <zephyr/dfu/mcuboot.h>
|
||||
#include <zephyr/dfu/flash_img.h>
|
||||
#include <zephyr/sys/reboot.h>
|
||||
#include "mgmt/hawkbit.h"
|
||||
#include <zephyr/mgmt/hawkbit.h>
|
||||
#include "hawkbit_firmware.h"
|
||||
#include "hawkbit_device.h"
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
#include <string.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include "net/buf.h"
|
||||
#include "mgmt/mcumgr/buf.h"
|
||||
#include <zephyr/net/buf.h>
|
||||
#include <zephyr/mgmt/mcumgr/buf.h>
|
||||
#include <mgmt/mgmt.h>
|
||||
#include <zcbor_common.h>
|
||||
#include <zcbor_decode.h>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#define H_MGMT_MGMT_
|
||||
|
||||
#include <inttypes.h>
|
||||
#include "mgmt/mcumgr/buf.h"
|
||||
#include <zephyr/mgmt/mcumgr/buf.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include <zephyr/mgmt/mcumgr/buf.h>
|
||||
#include "mgmt/mgmt.h"
|
||||
#include "smp/smp.h"
|
||||
#include "mgmt/mcumgr/smp.h"
|
||||
#include <zephyr/mgmt/mcumgr/smp.h>
|
||||
#include "smp_reassembly.h"
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -14,13 +14,13 @@
|
|||
#include <zephyr/net/buf.h>
|
||||
#include <zephyr/mgmt/mcumgr/buf.h>
|
||||
#include "mgmt/mgmt.h"
|
||||
#include "mgmt/mcumgr/serial.h"
|
||||
#include "mgmt/mcumgr/smp.h"
|
||||
#include "mgmt/mcumgr/smp_shell.h"
|
||||
#include "drivers/uart.h"
|
||||
#include <zephyr/mgmt/mcumgr/serial.h>
|
||||
#include <zephyr/mgmt/mcumgr/smp.h>
|
||||
#include <zephyr/mgmt/mcumgr/smp_shell.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
#include "syscalls/uart.h"
|
||||
#include "shell/shell.h"
|
||||
#include "shell/shell_uart.h"
|
||||
#include <zephyr/shell/shell.h>
|
||||
#include <zephyr/shell/shell_uart.h>
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(smp_shell);
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <zephyr/drivers/console/uart_mcumgr.h>
|
||||
#include "mgmt/mgmt.h"
|
||||
#include <zephyr/mgmt/mcumgr/serial.h>
|
||||
#include "mgmt/mcumgr/smp.h"
|
||||
#include <zephyr/mgmt/mcumgr/smp.h>
|
||||
|
||||
struct device;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#define __SETTINGS_FCB_H_
|
||||
|
||||
#include <zephyr/fs/fcb.h>
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#ifndef __SETTINGS_FILE_H_
|
||||
#define __SETTINGS_FILE_H_
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#define __SETTINGS_NVS_H_
|
||||
|
||||
#include <zephyr/fs/nvs.h>
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <errno.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings_priv.h"
|
||||
#include <zephyr/types.h>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include <zephyr/fs/fcb.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings/settings_fcb.h"
|
||||
#include "settings_priv.h"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include <zephyr/fs/fs.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings/settings_file.h"
|
||||
#include "settings_priv.h"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include <errno.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings/settings_file.h"
|
||||
#include <zephyr/zephyr.h>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings_priv.h"
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings/settings_nvs.h"
|
||||
#include "settings_priv.h"
|
||||
#include <zephyr/storage/flash_map.h>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <errno.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include "settings_priv.h"
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "task_wdt/task_wdt.h"
|
||||
#include <zephyr/task_wdt/task_wdt.h>
|
||||
|
||||
#include <zephyr/drivers/watchdog.h>
|
||||
#include <zephyr/sys/reboot.h>
|
||||
|
|
|
@ -21,7 +21,7 @@ static struct k_thread ztest_thread;
|
|||
#endif
|
||||
|
||||
#ifdef CONFIG_ZTEST_SHUFFLE
|
||||
#include <random/rand32.h>
|
||||
#include <zephyr/random/rand32.h>
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#define NUM_ITER_PER_SUITE CONFIG_ZTEST_SHUFFLE_SUITE_REPEAT_COUNT
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
*/
|
||||
|
||||
#include <ztest.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <arch/arm/aarch32/cortex_m/cmsis.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h>
|
||||
|
||||
|
||||
#define EXECUTION_TRACE_LENGTH 6
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/random/rand32.h>
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <zephyr/sys/printk.h>
|
||||
#define MBEDTLS_PRINT ((int(*)(const char *, ...)) printk)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
#include "time_machine.h"
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef ZEPHYR_TEST_BSIM_BT_AUDIO_TEST_
|
||||
#define ZEPHYR_TEST_BSIM_BT_AUDIO_TEST_
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_BT_HAS_CLIENT
|
||||
#include "bluetooth/audio/has.h"
|
||||
#include <zephyr/bluetooth/audio/has.h>
|
||||
|
||||
#include "common.h"
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_BT_MICS
|
||||
#include "bluetooth/audio/mics.h"
|
||||
#include <zephyr/bluetooth/audio/mics.h>
|
||||
#include "common.h"
|
||||
|
||||
extern enum bst_result_t bst_result;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_BT_VCS
|
||||
#include "bluetooth/audio/vcs.h"
|
||||
#include <zephyr/bluetooth/audio/vcs.h>
|
||||
#include "common.h"
|
||||
|
||||
extern enum bst_result_t bst_result;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
*/
|
||||
#ifndef ZEPHYR_TESTS_BLUETOOTH_BSIM_BT_BSIM_TEST_MESH_MESH_TEST_H_
|
||||
#define ZEPHYR_TESTS_BLUETOOTH_BSIM_BT_BSIM_TEST_MESH_MESH_TEST_H_
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -9,12 +9,12 @@
|
|||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
#include "zephyr/types.h"
|
||||
#include "errno.h"
|
||||
#include "zephyr.h"
|
||||
#include <zephyr/zephyr.h>
|
||||
|
||||
#include "bluetooth/mesh.h"
|
||||
#include <zephyr/bluetooth/mesh.h>
|
||||
#include "argparse.h"
|
||||
|
||||
#define LOG_MODULE_NAME settings_test_backend
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include "bs_types.h"
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include <errno.h>
|
||||
|
||||
#include "edtt_driver.h"
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
#include "soc.h"
|
||||
|
||||
#include "bs_tracing.h"
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
|
||||
#define ULL_LLCP_UNITTEST
|
||||
|
||||
#include <bluetooth/hci.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/slist.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/slist.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include "hal/ccm.h"
|
||||
|
||||
#include "util/util.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/types.h>
|
||||
#include "sys/byteorder.h"
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include "util.h"
|
||||
#include "pdu.h"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include <hal/ccm.h>
|
||||
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <pdu.h>
|
||||
#include <lll.h>
|
||||
#include <lll/lll_df_types.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "arch/xtensa/cache.h"
|
||||
#include <zephyr/arch/xtensa/cache.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <ztest.h>
|
||||
#include <cavs_ipc.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "arch/xtensa/cache.h"
|
||||
#include <zephyr/arch/xtensa/cache.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <ztest.h>
|
||||
#include <cavs_ipc.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#ifndef ZEPHYR_TESTS_INTEL_ADSP_TESTS_H
|
||||
#define ZEPHYR_TESTS_INTEL_ADSP_TESTS_H
|
||||
|
||||
#include "sys_clock.h"
|
||||
#include <zephyr/sys_clock.h>
|
||||
#include <cavs_ipc.h>
|
||||
#include <cavstool.h>
|
||||
#include <stdint.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#include "soc.h"
|
||||
#include "kernel.h"
|
||||
#include <zephyr/kernel.h>
|
||||
#include "posix_board_if.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -9,14 +9,14 @@
|
|||
* @brief Test log message
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include "mock_backend.h"
|
||||
#include <sys/printk.h>
|
||||
#include <logging/log_backend.h>
|
||||
#include <logging/log_backend_std.h>
|
||||
#include <logging/log_ctrl.h>
|
||||
#include <logging/log_output.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#include <zephyr/logging/log_backend.h>
|
||||
#include <zephyr/logging/log_backend_std.h>
|
||||
#include <zephyr/logging/log_ctrl.h>
|
||||
#include <zephyr/logging/log_output.h>
|
||||
#include <tc_util.h>
|
||||
#include <stdbool.h>
|
||||
#include <ztest.h>
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
#include "mock_backend.h"
|
||||
#include <ztest.h>
|
||||
#include <logging/log_core.h>
|
||||
#include <logging/log_backend_std.h>
|
||||
#include <zephyr/logging/log_core.h>
|
||||
#include <zephyr/logging/log_backend_std.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static uint32_t log_format_current = CONFIG_LOG_BACKEND_MOCK_OUTPUT_DEFAULT;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef SRC_MOCK_BACKEND_H__
|
||||
#define SRC_MOCK_BACKEND_H__
|
||||
|
||||
#include <logging/log_backend.h>
|
||||
#include <zephyr/logging/log_backend.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <string.h>
|
||||
#include <ztest.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
#include <zephyr/storage/flash_map.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <ztest.h>
|
||||
#include <zephyr/fs/fs.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string.h>
|
||||
#include <ztest.h>
|
||||
|
||||
#include "settings/settings.h"
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <kernel.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <ztest.h>
|
||||
|
||||
ZTEST_USER(framework_tests, test_userspace_is_user)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue