diff options
| author | Andy Shevchenko <[email protected]> | 2021-12-23 12:16:06 +0000 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2021-12-23 16:14:19 +0000 |
| commit | f21ecad451c9b33d56165da61b0f5a9a535bfd3c (patch) | |
| tree | 5e8bf3e5b13d7669d1361c5fdf48df1ba8047545 /drivers/gpio/gpio-regmap.c | |
| parent | gpio: tegra186: Add support for Tegra241 (diff) | |
| download | kernel-f21ecad451c9b33d56165da61b0f5a9a535bfd3c.tar.gz kernel-f21ecad451c9b33d56165da61b0f5a9a535bfd3c.zip | |
gpio: regmap: Switch to use fwnode instead of of_node
GPIO library now accepts fwnode as a firmware node, so
switch the driver to use it.
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Michael Walle <[email protected]>
Signed-off-by: Bartosz Golaszewski <[email protected]>
Diffstat (limited to 'drivers/gpio/gpio-regmap.c')
| -rw-r--r-- | drivers/gpio/gpio-regmap.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpio/gpio-regmap.c b/drivers/gpio/gpio-regmap.c index 69c219742083..6383136cbe59 100644 --- a/drivers/gpio/gpio-regmap.c +++ b/drivers/gpio/gpio-regmap.c @@ -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 |
