From 2e6b9fc583b2254e392cb919be41350dac3d2247 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Mon, 6 May 2024 14:58:37 +0200 Subject: [PATCH] core: interrupts: fix inline comment typo on DT property name Fix DT property named "interrupts-extended", mistakenly named "extended-interrupts" in interrupt API function inline description comments. Fixes: 33a0c8350ac1 ("core: interrupt: registering interrupt providers") Signed-off-by: Etienne Carriere Reviewed-by: Jerome Forissier Acked-by: Jens Wiklander --- core/include/kernel/interrupt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/include/kernel/interrupt.h b/core/include/kernel/interrupt.h index 22a7a044945..2b0a51d1875 100644 --- a/core/include/kernel/interrupt.h +++ b/core/include/kernel/interrupt.h @@ -474,7 +474,7 @@ TEE_Result interrupt_register_provider(const void *fdt, int node, * * @fdt Device tree to work on * @node Node offset of the subnode containing interrupt(s) references - * @index Index in "interrupts" or "extended-interrupts" property list + * @index Index in "interrupts" or "interrupts-extended" property list * @chip Output interrupt controller reference upon success * @itr_num Output interrupt number upon success * @@ -533,7 +533,7 @@ static inline TEE_Result interrupt_dt_get_by_name(const void *fdt __unused, /* * Helper function for when caller retrieves the first interrupt defined - * in "interrupts" or "extended-interrupts" DT binding property list. + * in "interrupts" or "interrupts-extended" DT binding property list. */ static inline TEE_Result interrupt_dt_get(const void *fdt, int node, struct itr_chip **chip,