1
0
Fork 0
mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-01-22 16:06:04 -05:00

irqchip/stm32mp-exti: Use of_property_present() for non-boolean properties

The use of of_property_read_bool() for non-boolean properties is deprecated
in favor of of_property_present() when testing for property presence.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Antonio Borneo <antonio.borneo@foss.st.com>
Link: https://lore.kernel.org/all/20241104190836.278117-1-robh@kernel.org
This commit is contained in:
Rob Herring (Arm) 2024-11-04 13:08:35 -06:00 committed by Thomas Gleixner
parent 0053892ff7
commit 194c4f569e

View file

@ -696,8 +696,7 @@ static int stm32mp_exti_probe(struct platform_device *pdev)
if (ret) if (ret)
return ret; return ret;
if (of_property_read_bool(np, "interrupts-extended")) host_data->dt_has_irqs_desc = of_property_present(np, "interrupts-extended");
host_data->dt_has_irqs_desc = true;
return 0; return 0;
} }