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,14 +6,14 @@
|
|||
|
||||
#define DT_DRV_COMPAT maxim_ds3231
|
||||
|
||||
#include <device.h>
|
||||
#include <drivers/rtc/maxim_ds3231.h>
|
||||
#include <drivers/gpio.h>
|
||||
#include <drivers/i2c.h>
|
||||
#include <kernel.h>
|
||||
#include <logging/log.h>
|
||||
#include <sys/timeutil.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/rtc/maxim_ds3231.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/drivers/i2c.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/sys/timeutil.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
LOG_MODULE_REGISTER(DS3231, CONFIG_COUNTER_LOG_LEVEL);
|
||||
|
||||
|
@ -1300,7 +1300,7 @@ DEVICE_DT_INST_DEFINE(0, ds3231_init, NULL, &ds3231_0_data,
|
|||
|
||||
#ifdef CONFIG_USERSPACE
|
||||
|
||||
#include <syscall_handler.h>
|
||||
#include <zephyr/syscall_handler.h>
|
||||
|
||||
int z_vrfy_maxim_ds3231_get_syncpoint(const struct device *dev,
|
||||
struct maxim_ds3231_syncpoint *syncpoint)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue