diff options
Diffstat (limited to 'drivers/pwm/pwm-samsung.c')
| -rw-r--r-- | drivers/pwm/pwm-samsung.c | 11 | 
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/pwm/pwm-samsung.c b/drivers/pwm/pwm-samsung.c index fcc8b9adde9..ba6b650cf8d 100644 --- a/drivers/pwm/pwm-samsung.c +++ b/drivers/pwm/pwm-samsung.c @@ -18,6 +18,7 @@  #include <linux/io.h>  #include <linux/kernel.h>  #include <linux/module.h> +#include <linux/of.h>  #include <linux/platform_device.h>  #include <linux/pwm.h>  #include <linux/slab.h> @@ -224,8 +225,8 @@ static int pwm_samsung_request(struct pwm_chip *chip, struct pwm_device *pwm)  static void pwm_samsung_free(struct pwm_chip *chip, struct pwm_device *pwm)  { -	pwm_set_chip_data(pwm, NULL);  	devm_kfree(chip->dev, pwm_get_chip_data(pwm)); +	pwm_set_chip_data(pwm, NULL);  }  static int pwm_samsung_enable(struct pwm_chip *chip, struct pwm_device *pwm) @@ -334,9 +335,6 @@ static int pwm_samsung_config(struct pwm_chip *chip, struct pwm_device *pwm,  	writel(tcnt, our_chip->base + REG_TCNTB(pwm->hwpwm));  	writel(tcmp, our_chip->base + REG_TCMPB(pwm->hwpwm)); -	if (test_bit(PWMF_ENABLED, &pwm->flags)) -		pwm_samsung_enable(chip, pwm); -  	chan->period_ns = period_ns;  	chan->tin_ns = tin_ns;  	chan->duty_ns = duty_ns; @@ -597,9 +595,8 @@ static int pwm_samsung_resume(struct device *dev)  }  #endif -static const struct dev_pm_ops pwm_samsung_pm_ops = { -	SET_SYSTEM_SLEEP_PM_OPS(pwm_samsung_suspend, pwm_samsung_resume) -}; +static SIMPLE_DEV_PM_OPS(pwm_samsung_pm_ops, pwm_samsung_suspend, +			 pwm_samsung_resume);  static struct platform_driver pwm_samsung_driver = {  	.driver		= {  | 
