soc: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all soc code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
5f5a905784
commit
0e69129fb3
322 changed files with 850 additions and 850 deletions
|
@ -4,20 +4,20 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <kernel.h>
|
||||
#include <zephyr/kernel.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <fsl_clock.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#if defined(CONFIG_MULTI_LEVEL_INTERRUPTS)
|
||||
#include <errno.h>
|
||||
#include <irq_nextlevel.h>
|
||||
#include <zephyr/irq_nextlevel.h>
|
||||
#endif
|
||||
|
||||
#define LOG_LEVEL CONFIG_SOC_LOG_LEVEL
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(soc);
|
||||
|
||||
#define SCG_LPFLL_DISABLE 0U
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue