Commit 5361ebe9 authored by Mark Brown's avatar Mark Brown Committed by Linus Walleij
Browse files

pinctrl: at91: Remove pioc_index from struct at91_gpio_chip



The pioc_idx member of struct at91_gpio_chip is write only, just remove it.

Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20230216-gpio-at91-immutable-v2-2-326ef362dbc7@kernel.org


Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent d61955da
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -42,7 +42,6 @@ struct at91_pinctrl_mux_ops;
 * @next: bank sharing same clock
 * @pioc_hwirq: PIO bank interrupt identifier on AIC
 * @pioc_virq: PIO bank Linux virtual interrupt
 * @pioc_idx: PIO bank index
 * @regbase: PIO bank virtual address
 * @clock: associated clock
 * @ops: at91 pinctrl mux ops
@@ -56,7 +55,6 @@ struct at91_gpio_chip {
	struct at91_gpio_chip	*next;
	int			pioc_hwirq;
	int			pioc_virq;
	int			pioc_idx;
	void __iomem		*regbase;
	struct clk		*clock;
	const struct at91_pinctrl_mux_ops *ops;
@@ -1849,7 +1847,6 @@ static int at91_gpio_probe(struct platform_device *pdev)

	at91_chip->ops = of_device_get_match_data(dev);
	at91_chip->pioc_virq = irq;
	at91_chip->pioc_idx = alias_idx;

	at91_chip->clock = devm_clk_get_enabled(dev, NULL);
	if (IS_ERR(at91_chip->clock))