]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
gpio: regmap: Switch to use fwnode instead of of_node
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 23 Dec 2021 12:16:06 +0000 (14:16 +0200)
committerBartosz Golaszewski <brgl@bgdev.pl>
Thu, 23 Dec 2021 16:14:19 +0000 (17:14 +0100)
GPIO library now accepts fwnode as a firmware node, so
switch the driver to use it.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Michael Walle <michael@walle.cc>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
drivers/gpio/gpio-regmap.c

index 69c219742083a6cd45035997988a585ec809668a..6383136cbe5997714f0b10ffc0a9cbaa9cc17e11 100644 (file)
@@ -244,16 +244,12 @@ struct gpio_regmap *gpio_regmap_register(const struct gpio_regmap_config *config
 
        chip = &gpio->gpio_chip;
        chip->parent = config->parent;
+       chip->fwnode = config->fwnode;
        chip->base = -1;
        chip->ngpio = config->ngpio;
        chip->names = config->names;
        chip->label = config->label ?: dev_name(config->parent);
 
-#if defined(CONFIG_OF_GPIO)
-       /* gpiolib will use of_node of the parent if chip->of_node is NULL */
-       chip->of_node = to_of_node(config->fwnode);
-#endif /* CONFIG_OF_GPIO */
-
        /*
         * If our regmap is fast_io we should probably set can_sleep to false.
         * Right now, the regmap doesn't save this property, nor is there any