Commit be0552e1 authored by Théo Lebrun's avatar Théo Lebrun Committed by Linus Walleij

gpio: nomadik: replace of_property_read_*() by device_property_read_*()

Avoid OF APIs in the GPIO subsystem. Here, replace
of_property_read_{u32,bool}() call by device_property_read_{u32,bool}().
Signed-off-by: default avatarThéo Lebrun <theo.lebrun@bootlin.com>
Link: https://lore.kernel.org/r/20240228-mbly-gpio-v2-16-3ba757474006@bootlin.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 0b95fcd1
...@@ -497,7 +497,7 @@ struct nmk_gpio_chip *nmk_gpio_populate_chip(struct device_node *np, ...@@ -497,7 +497,7 @@ struct nmk_gpio_chip *nmk_gpio_populate_chip(struct device_node *np,
} }
gpio_pdev = to_platform_device(gpio_dev); gpio_pdev = to_platform_device(gpio_dev);
if (of_property_read_u32(np, "gpio-bank", &id)) { if (device_property_read_u32(gpio_dev, "gpio-bank", &id)) {
dev_err(&pdev->dev, "populate: gpio-bank property not found\n"); dev_err(&pdev->dev, "populate: gpio-bank property not found\n");
platform_device_put(gpio_pdev); platform_device_put(gpio_pdev);
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
...@@ -587,7 +587,7 @@ static int nmk_gpio_probe(struct platform_device *dev) ...@@ -587,7 +587,7 @@ static int nmk_gpio_probe(struct platform_device *dev)
} }
supports_sleepmode = supports_sleepmode =
of_property_read_bool(np, "st,supports-sleepmode"); device_property_read_bool(dev, "st,supports-sleepmode");
/* Correct platform device ID */ /* Correct platform device ID */
dev->id = nmk_chip->bank; dev->id = nmk_chip->bank;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment