From 8af7dce82e09ef9680f17eb1c4af183ce740d03e Mon Sep 17 00:00:00 2001 From: Dong Wang Date: Wed, 12 Jun 2024 09:28:42 +0800 Subject: [PATCH] drivers: apic_tsc: add dependency of DYNAMIC_INTERRUPTS The reason is that this driver needs to call the function 'irq_connect_dynamic()' which is implemented with DYNAMIC_INTERRUPTS. Signed-off-by: Dong Wang --- drivers/timer/Kconfig.x86 | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/timer/Kconfig.x86 b/drivers/timer/Kconfig.x86 index 436439838f6eb..c0ff7b1f2b597 100644 --- a/drivers/timer/Kconfig.x86 +++ b/drivers/timer/Kconfig.x86 @@ -54,6 +54,7 @@ config APIC_TSC_DEADLINE_TIMER config APIC_TIMER_TSC bool "Local APIC timer using TSC time source" depends on !SMP + depends on DYNAMIC_INTERRUPTS select LOAPIC select TICKLESS_CAPABLE select TIMER_HAS_64BIT_CYCLE_COUNTER