From 1e506d3b42c6ebd3cd7165dd6efa279ff0140d7b Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Fri, 7 Jul 2017 10:33:01 -0700 Subject: [PATCH] arch: xtensa: Remove mentions of dynamic interrupt settings Dynamic IRQ allocation has been yanked from Zephyr a few releases ago, so there's no point in keeping these options available. Signed-off-by: Leandro Pereira --- arch/xtensa/Kconfig | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 4b11df914cd..6b56f74b910 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig @@ -47,8 +47,6 @@ config SW_ISR_TABLE table, unlike ISRs connected directly in the vector table, allow a parameter to be passed to the interrupt handlers. Also, invoking the exception/interrupt exit stub is automatically done. - This has to be enabled for dynamically connecting interrupt handlers - at runtime (SW_ISR_TABLE_DYNAMIC). config IRQ_OFFLOAD bool "Enable IRQ offload" @@ -58,16 +56,6 @@ config IRQ_OFFLOAD run in interrupt context. Uses one entry in the IDT. Mainly useful for test cases. -config SW_ISR_TABLE_DYNAMIC - bool - prompt "Allow installing interrupt handlers at runtime" - depends on SW_ISR_TABLE - default n - help - This option enables irq_connect_dynamic(). It moves the ISR table to - SRAM so that it is writable. This has the side-effect of removing - write-protection on the ISR table. - config XTENSA_RESET_VECTOR bool prompt "Build reset vector code"