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 <leandro.pereira@intel.com>
This commit is contained in:
Leandro Pereira 2017-07-07 10:33:01 -07:00 committed by Andrew Boie
commit 1e506d3b42

View file

@ -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"