Commit 69ee15f1 authored by Matthias Schiffer's avatar Matthias Schiffer Committed by Thierry Reding

pwm: pca9685: Remove unused duty_cycle struct element

duty_cycle was only set, never read.
Signed-off-by: default avatarMatthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: default avatarThierry Reding <thierry.reding@gmail.com>
parent cef6df8b
......@@ -69,7 +69,6 @@
struct pca9685 {
struct pwm_chip chip;
struct regmap *regmap;
int duty_ns;
int period_ns;
#if IS_ENABLED(CONFIG_GPIOLIB)
struct mutex lock;
......@@ -272,8 +271,6 @@ static int pca9685_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
}
}
pca->duty_ns = duty_ns;
if (duty_ns < 1) {
if (pwm->hwpwm >= PCA9685_MAXCHAN)
reg = PCA9685_ALL_LED_OFF_H;
......@@ -449,7 +446,6 @@ static int pca9685_pwm_probe(struct i2c_client *client,
ret);
return ret;
}
pca->duty_ns = 0;
pca->period_ns = PCA9685_DEFAULT_PERIOD;
i2c_set_clientdata(client, pca);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment