From: Patrice Chotard Date: Tue, 12 Dec 2017 08:49:35 +0000 (+0100) Subject: pinctrl: stm32: add stm32f4 pinctrl compatible strings X-Git-Tag: v2018.03-rc1~234 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=98693c22d9609428758e83f69b485e281be3258a;p=u-boot pinctrl: stm32: add stm32f4 pinctrl compatible strings STM32F4 SoCs uses the same pinctrl block as found into STM32F7 and H7 SoCs. We can add "st,stm32f429-pinctrl" and "st,stm32f469-pinctrl" compatible string into pinctrl_stm32.c. Signed-off-by: Patrice Chotard --- diff --git a/drivers/pinctrl/pinctrl_stm32.c b/drivers/pinctrl/pinctrl_stm32.c index 51fdfb3851..2066e11cf1 100644 --- a/drivers/pinctrl/pinctrl_stm32.c +++ b/drivers/pinctrl/pinctrl_stm32.c @@ -182,6 +182,8 @@ static struct pinctrl_ops stm32_pinctrl_ops = { }; static const struct udevice_id stm32_pinctrl_ids[] = { + { .compatible = "st,stm32f429-pinctrl" }, + { .compatible = "st,stm32f469-pinctrl" }, { .compatible = "st,stm32f746-pinctrl" }, { .compatible = "st,stm32h743-pinctrl" }, { }