arm: add missing includes
Add missing includes that were previously included indirectly. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
1e7548eeda
commit
3d85ae37b6
|
@ -12,6 +12,7 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/timing/timing.h>
|
||||
#include <aarch32/cortex_m/dwt.h>
|
||||
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h>
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#else
|
||||
|
||||
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h>
|
||||
#include <zephyr/sys/__assert.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
* when the counters reach zero.
|
||||
*/
|
||||
|
||||
#include <zephyr/irq.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(counter_mchp_xec, CONFIG_COUNTER_LOG_LEVEL);
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/irq.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/sys/sys_io.h>
|
||||
#include <soc.h>
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#ifdef CONFIG_SOC_SERIES_MEC172X
|
||||
#include <zephyr/drivers/clock_control/mchp_xec_clock_control.h>
|
||||
#include <zephyr/drivers/interrupt_controller/intc_mchp_xec_ecia.h>
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h>
|
||||
#include <errno.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#ifdef CONFIG_SOC_SERIES_MEC172X
|
||||
#include <zephyr/drivers/clock_control/mchp_xec_clock_control.h>
|
||||
#include <zephyr/drivers/interrupt_controller/intc_mchp_xec_ecia.h>
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
#define DT_DRV_COMPAT microchip_xec_tach
|
||||
|
||||
#include <errno.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
#ifdef CONFIG_SOC_SERIES_MEC172X
|
||||
#include <zephyr/drivers/clock_control/mchp_xec_clock_control.h>
|
||||
#include <zephyr/drivers/interrupt_controller/intc_mchp_xec_ecia.h>
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/irq.h>
|
||||
#define LOG_LEVEL CONFIG_WDT_LOG_LEVEL
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(wdt_mchp_xec);
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_DRIVERS_KB_SCAN_H_
|
||||
#define ZEPHYR_INCLUDE_DRIVERS_KB_SCAN_H_
|
||||
|
||||
#include <errno.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <stddef.h>
|
||||
#include <zephyr/device.h>
|
||||
|
|
Loading…
Reference in a new issue