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
|
@ -14,28 +14,28 @@
|
|||
* Please validate for newly added series.
|
||||
*/
|
||||
|
||||
#include <kernel.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <sys/__assert.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
#include <zephyr/sys/__assert.h>
|
||||
#include <soc.h>
|
||||
#include <init.h>
|
||||
#include <drivers/uart.h>
|
||||
#include <drivers/clock_control.h>
|
||||
#include <pm/policy.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/drivers/uart.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
#include <zephyr/pm/policy.h>
|
||||
|
||||
#ifdef CONFIG_UART_ASYNC_API
|
||||
#include <drivers/dma/dma_stm32.h>
|
||||
#include <drivers/dma.h>
|
||||
#include <zephyr/drivers/dma/dma_stm32.h>
|
||||
#include <zephyr/drivers/dma.h>
|
||||
#endif
|
||||
|
||||
#include <linker/sections.h>
|
||||
#include <drivers/clock_control/stm32_clock_control.h>
|
||||
#include <zephyr/linker/sections.h>
|
||||
#include <zephyr/drivers/clock_control/stm32_clock_control.h>
|
||||
#include "uart_stm32.h"
|
||||
|
||||
#include <stm32_ll_usart.h>
|
||||
#include <stm32_ll_lpuart.h>
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(uart_stm32, CONFIG_UART_LOG_LEVEL);
|
||||
|
||||
#define HAS_LPUART_1 (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpuart1), \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue