Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c030a9c9 authored by Russell King's avatar Russell King Committed by Linus Walleij
Browse files

gpio: omap: remove remainder of list management



Commit c4791bc6 ("gpio: omap: drop omap_gpio_list") removed the
list head and addition to the list head of each gpio bank, but failed
to remove the list_del() call and the node inside struct gpio_bank.
Remove these too.

Fixes: c4791bc6 ("gpio: omap: drop omap_gpio_list")
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
Tested-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 64ea3e90
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -47,7 +47,6 @@ struct gpio_regs {
};

struct gpio_bank {
	struct list_head node;
	void __iomem *base;
	int irq;
	u32 non_wakeup_gpios;
@@ -1641,7 +1640,6 @@ static int omap_gpio_remove(struct platform_device *pdev)
	struct gpio_bank *bank = platform_get_drvdata(pdev);

	cpu_pm_unregister_notifier(&bank->nb);
	list_del(&bank->node);
	gpiochip_remove(&bank->chip);
	pm_runtime_disable(&pdev->dev);
	if (bank->dbck_flag)