Commit 0da58037 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Linus Walleij

pinctrl: mediatek: Remove duplicate assignment of of_gpio_n_cells

The of_gpio_n_cells default is 2 when ->of_xlate() callback is
not defined. No need to assign it explicitly in the driver.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230112184340.79606-1-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 03a13546
...@@ -574,7 +574,6 @@ static int mtk_build_gpiochip(struct mtk_pinctrl *hw) ...@@ -574,7 +574,6 @@ static int mtk_build_gpiochip(struct mtk_pinctrl *hw)
chip->set_config = mtk_gpio_set_config; chip->set_config = mtk_gpio_set_config;
chip->base = -1; chip->base = -1;
chip->ngpio = hw->soc->npins; chip->ngpio = hw->soc->npins;
chip->of_gpio_n_cells = 2;
ret = gpiochip_add_data(chip, hw); ret = gpiochip_add_data(chip, hw);
if (ret < 0) if (ret < 0)
......
...@@ -906,7 +906,6 @@ static const struct gpio_chip mtk_gpio_chip = { ...@@ -906,7 +906,6 @@ static const struct gpio_chip mtk_gpio_chip = {
.set = mtk_gpio_set, .set = mtk_gpio_set,
.to_irq = mtk_gpio_to_irq, .to_irq = mtk_gpio_to_irq,
.set_config = mtk_gpio_set_config, .set_config = mtk_gpio_set_config,
.of_gpio_n_cells = 2,
}; };
static int mtk_eint_suspend(struct device *device) static int mtk_eint_suspend(struct device *device)
......
...@@ -987,7 +987,6 @@ static int mtk_build_gpiochip(struct mtk_pinctrl *hw) ...@@ -987,7 +987,6 @@ static int mtk_build_gpiochip(struct mtk_pinctrl *hw)
chip->set_config = mtk_gpio_set_config; chip->set_config = mtk_gpio_set_config;
chip->base = -1; chip->base = -1;
chip->ngpio = hw->soc->npins; chip->ngpio = hw->soc->npins;
chip->of_gpio_n_cells = 2;
ret = gpiochip_add_data(chip, hw); ret = gpiochip_add_data(chip, hw);
if (ret < 0) if (ret < 0)
......
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