include: always use <> for Zephyr includes

Double quotes "" should only be used for local headers.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2023-09-14 11:07:22 +02:00 committed by Carles Cufí
commit 691facc20f
59 changed files with 86 additions and 86 deletions

View file

@ -21,7 +21,7 @@
#include <zephyr/init.h>
#include <zephyr/sys/byteorder.h>
#include <zephyr/sys/util.h>
#include "zephyr/logging/log.h"
#include <zephyr/logging/log.h>
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_HCI_DRIVER)
#define LOG_LEVEL CONFIG_BT_HCI_DRIVER_LOG_LEVEL

View file

@ -12,7 +12,7 @@
#include <zephyr/crypto/crypto.h>
#include <zephyr/drivers/clock_control.h>
#include <zephyr/drivers/clock_control/mchp_xec_clock_control.h>
#include "zephyr/sys/util.h"
#include <zephyr/sys/util.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(xec_symcr, CONFIG_CRYPTO_LOG_LEVEL);

View file

@ -4,7 +4,7 @@
*/
#include <zephyr/net/ethernet.h>
#include "zephyr/net/phy.h"
#include <zephyr/net/phy.h>
#include <zephyr/arch/cpu.h>
#include <zephyr/sys_clock.h>
#include <zephyr/drivers/mdio.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include "zephyr/rtio/rtio.h"
#include <zephyr/rtio/rtio.h>
#include <zephyr/drivers/i2c.h>
#include <zephyr/rtio/rtio_spsc.h>
#include <zephyr/sys/__assert.h>

View file

@ -6,7 +6,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include "zephyr/spinlock.h"
#include <zephyr/spinlock.h>
#define DT_DRV_COMPAT atmel_sam_i2c_twihs
/** @file

View file

@ -11,7 +11,7 @@ extern "C" {
#endif
#include "sedi_driver_common.h"
#include "sedi_driver_ipc.h"
#include "zephyr/sys/atomic.h"
#include <zephyr/sys/atomic.h>
/*
* bit 31 indicates whether message is valid, and could generate interrupt

View file

@ -14,7 +14,7 @@
#include <zephyr/pm/device.h>
#include <zephyr/sys/byteorder.h>
#include "zephyr/drivers/sensor/veml7700.h"
#include <zephyr/drivers/sensor/veml7700.h>
LOG_MODULE_REGISTER(VEML7700, CONFIG_SENSOR_LOG_LEVEL);

View file

@ -10,7 +10,7 @@
* It also provides a custom k_busy_wait() which can be used with the
* POSIX arch and InfClock SOC
*/
#include "zephyr/types.h"
#include <zephyr/types.h>
#include <zephyr/irq.h>
#include <zephyr/init.h>
#include <zephyr/drivers/timer/system_timer.h>