script: gen_isr_tables: remove unnecessary warning log

Remove a message that had a typo in it but, more importantly that was
not needed.
The CONFIG_ISR_TABLES_LOCAL_DECLARATION already selects EXPERIMENTAL so
a user is properly alerted about the consequences just like any other
EXPERIMENTAL features if they enable WARN_EXPERIMENTAL.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
Benjamin Cabé 2024-02-22 09:58:42 +01:00 committed by Fabio Baltieri
commit 9d1df132b1

View file

@ -315,8 +315,6 @@ def main():
intlist_data = read_intList_sect(kernel, config.get_intlist_snames()) intlist_data = read_intList_sect(kernel, config.get_intlist_snames())
if config.check_sym("CONFIG_ISR_TABLES_LOCAL_DECLARATION"): if config.check_sym("CONFIG_ISR_TABLES_LOCAL_DECLARATION"):
sys.stdout.write(
"Warning: The EXPERIMENTAL ISR_TABLES_LOCAL_DECLARATION feature selected\n")
parser_module = importlib.import_module('gen_isr_tables_parser_local') parser_module = importlib.import_module('gen_isr_tables_parser_local')
parser = parser_module.gen_isr_parser(intlist_data, config, log) parser = parser_module.gen_isr_parser(intlist_data, config, log)
else: else: