pwm: ep93xx: drop legacy pinctrl
authorNikita Shubin <nikita.shubin@maquefel.me>
Wed, 19 Apr 2023 14:52:05 +0000 (17:52 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Wed, 31 May 2023 10:51:52 +0000 (13:51 +0300)
Drop legacy gpio request/free since we are using
pinctrl for this now.

Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
drivers/pwm/pwm-ep93xx.c

index 361984ef4c0bb50bb59dffa5a0069e6170efddd0..ac08bd0e7572fd40bd9f689cd6f992c1dbde70a7 100644 (file)
@@ -27,8 +27,6 @@
 
 #include <asm/div64.h>
 
-#include <linux/soc/cirrus/ep93xx.h>   /* for ep93xx_pwm_{acquire,release}_gpio() */
-
 #define EP93XX_PWMx_TERM_COUNT 0x00
 #define EP93XX_PWMx_DUTY_CYCLE 0x04
 #define EP93XX_PWMx_ENABLE     0x08
@@ -45,20 +43,6 @@ static inline struct ep93xx_pwm *to_ep93xx_pwm(struct pwm_chip *chip)
        return container_of(chip, struct ep93xx_pwm, chip);
 }
 
-static int ep93xx_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
-{
-       struct platform_device *pdev = to_platform_device(chip->dev);
-
-       return ep93xx_pwm_acquire_gpio(pdev);
-}
-
-static void ep93xx_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
-{
-       struct platform_device *pdev = to_platform_device(chip->dev);
-
-       ep93xx_pwm_release_gpio(pdev);
-}
-
 static int ep93xx_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
                            const struct pwm_state *state)
 {
@@ -157,8 +141,6 @@ static int ep93xx_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
 }
 
 static const struct pwm_ops ep93xx_pwm_ops = {
-       .request = ep93xx_pwm_request,
-       .free = ep93xx_pwm_free,
        .apply = ep93xx_pwm_apply,
        .owner = THIS_MODULE,
 };