drivers: intc_dw_ace: rename file

No need for the version in the file name, this will be used by multiple
versions of ACE.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2022-10-03 13:50:23 -04:00
parent 98a88cc5a7
commit ede94516b0
5 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@ zephyr_library_property(ALLOW_EMPTY TRUE)
zephyr_library_sources_ifdef(CONFIG_ARCV2_INTERRUPT_UNIT intc_arcv2_irq_unit.c)
zephyr_library_sources_ifdef(CONFIG_CAVS_ICTL intc_cavs.c)
zephyr_library_sources_ifdef(CONFIG_DW_ICTL intc_dw.c)
zephyr_library_sources_ifdef(CONFIG_DW_ICTL_ACE_V1X intc_dw_ace_v1x.c)
zephyr_library_sources_ifdef(CONFIG_DW_ICTL_ACE_V1X intc_dw_ace.c)
zephyr_library_sources_ifdef(CONFIG_EXTI_STM32 intc_exti_stm32.c)
zephyr_library_sources_ifdef(CONFIG_GD32_EXTI intc_gd32_exti.c)
zephyr_library_sources_ifdef(CONFIG_GIC_V1 intc_gic.c)

View file

@ -10,7 +10,7 @@
#ifdef CONFIG_DYNAMIC_INTERRUPTS
#include <zephyr/sw_isr_table.h>
#endif
#include <zephyr/drivers/interrupt_controller/dw_ace_v1x.h>
#include <zephyr/drivers/interrupt_controller/dw_ace.h>
#include <soc.h>
#include <adsp_interrupt.h>
#include "intc_dw.h"

View file

@ -7,7 +7,7 @@
#include <zephyr/drivers/timer/system_timer.h>
#include <zephyr/sys_clock.h>
#include <zephyr/spinlock.h>
#include <zephyr/drivers/interrupt_controller/dw_ace_v1x.h>
#include <zephyr/drivers/interrupt_controller/dw_ace.h>
#include <cavs-idc.h>
#include <adsp_shim.h>

View file

@ -3,8 +3,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_DRIVERS_DW_ACE_V1X_H
#define ZEPHYR_INCLUDE_DRIVERS_DW_ACE_V1X_H
#ifndef ZEPHYR_INCLUDE_DRIVERS_DW_ACE_H
#define ZEPHYR_INCLUDE_DRIVERS_DW_ACE_H
#include <zephyr/device.h>
@ -25,4 +25,4 @@ struct dw_ace_v1_ictl_driver_api {
#endif
};
#endif /* ZEPHYR_INCLUDE_DRIVERS_DW_ACE_V1X_H */
#endif /* ZEPHYR_INCLUDE_DRIVERS_DW_ACE_H */

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/drivers/interrupt_controller/dw_ace_v1x.h>
#include <zephyr/drivers/interrupt_controller/dw_ace.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(ace_v1x_soc, CONFIG_SOC_LOG_LEVEL);