From: Marco Felsch <[email protected]>

Introduce a common OF related function which does all the OF related
part. This allow us to drop the santity checks and harmonizes the code
with the linux kernel.

Signed-off-by: Marco Felsch <[email protected]>
Reviewed-by: Ahmad Fatoum <[email protected]>
Signed-off-by: Ahmad Fatoum <[email protected]>
---
v1 -> v2:
  - no change
---
 drivers/gpio/gpiolib.c | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index 97d1a6d6687f..5e753d1c7300 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -517,9 +517,6 @@ static int of_gpiochip_scan_hogs(struct gpio_chip *chip)
        struct device_node *np;
        int ret, i;
 
-       if (!IS_ENABLED(CONFIG_OFDEVICE) || !chip->dev->of_node)
-               return 0;
-
        for_each_available_child_of_node(chip->dev->of_node, np) {
                if (!of_property_read_bool(np, "gpio-hog"))
                        continue;
@@ -550,15 +547,10 @@ static int of_gpiochip_scan_hogs(struct gpio_chip *chip)
  */
 static int of_gpiochip_set_names(struct gpio_chip *chip)
 {
-       struct device *dev = chip->dev;
-       struct device_node *np;
+       struct device_node *np = dev_of_node(chip->dev);
        const char **names;
        int ret, i, count;
 
-       np = dev_of_node(dev);
-       if (!np)
-               return 0;
-
        count = of_property_count_strings(np, "gpio-line-names");
        if (count < 0)
                return 0;
@@ -598,6 +590,22 @@ static int of_gpiochip_set_names(struct gpio_chip *chip)
        return 0;
 }
 
+static int of_gpiochip_add(struct gpio_chip *chip)
+{
+       struct device_node *np;
+       int ret;
+
+       np = dev_of_node(chip->dev);
+       if (!np)
+               return 0;
+
+       ret = of_gpiochip_set_names(chip);
+       if (ret)
+               return ret;
+
+       return of_gpiochip_scan_hogs(chip);
+}
+
 #ifdef CONFIG_OFDEVICE
 static const char *gpio_suffixes[] = {
        "gpios",
@@ -659,7 +667,6 @@ int dev_gpiod_get_index(struct device *dev,
 
 int gpiochip_add(struct gpio_chip *chip)
 {
-       int ret;
        int i;
 
        if (chip->base >= 0) {
@@ -679,11 +686,7 @@ int gpiochip_add(struct gpio_chip *chip)
        for (i = chip->base; i < chip->base + chip->ngpio; i++)
                gpio_desc[i].chip = chip;
 
-       ret = of_gpiochip_set_names(chip);
-       if (ret)
-               return ret;
-
-       return of_gpiochip_scan_hogs(chip);
+       return of_gpiochip_add(chip);
 }
 
 void gpiochip_remove(struct gpio_chip *chip)
-- 
2.39.2


Reply via email to