input: keypad: ep93xx: drop legacy pinctrl
authorNikita Shubin <nikita.shubin@maquefel.me>
Wed, 19 Apr 2023 14:53:31 +0000 (17:53 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Sun, 21 May 2023 17:00:29 +0000 (20:00 +0300)
Drop legacy acquire/release since we are using
pinctrl for this now.

Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
drivers/input/keyboard/ep93xx_keypad.c

index 3f4ae3f961b19cafd7a48dbb88bf17dc6a5537a8..1f283d8a7bdaff39623d5b905ffc1d6c9ab1e5c4 100644 (file)
@@ -221,13 +221,6 @@ static int ep93xx_keypad_resume(struct device *dev)
 static DEFINE_SIMPLE_DEV_PM_OPS(ep93xx_keypad_pm_ops,
                                ep93xx_keypad_suspend, ep93xx_keypad_resume);
 
-static void ep93xx_keypad_release_gpio_action(void *_pdev)
-{
-       struct platform_device *pdev = _pdev;
-
-       ep93xx_keypad_release_gpio(pdev);
-}
-
 static int ep93xx_keypad_probe(struct platform_device *pdev)
 {
        struct ep93xx_keypad *keypad;
@@ -255,15 +248,6 @@ static int ep93xx_keypad_probe(struct platform_device *pdev)
        if (IS_ERR(keypad->mmio_base))
                return PTR_ERR(keypad->mmio_base);
 
-       err = ep93xx_keypad_acquire_gpio(pdev);
-       if (err)
-               return err;
-
-       err = devm_add_action_or_reset(&pdev->dev,
-                                      ep93xx_keypad_release_gpio_action, pdev);
-       if (err)
-               return err;
-
        keypad->clk = devm_clk_get(&pdev->dev, NULL);
        if (IS_ERR(keypad->clk))
                return PTR_ERR(keypad->clk);