|
@@ -609,13 +609,6 @@ struct pwm_device *of_pwm_get(struct device_node *np, const char *con_id)
|
|
|
|
|
|
pwm->label = con_id;
|
|
|
|
|
|
- /*
|
|
|
- * FIXME: This should be removed once all PWM users properly make use
|
|
|
- * of struct pwm_args to initialize the PWM device. As long as this is
|
|
|
- * here, the PWM state and hardware state can get out of sync.
|
|
|
- */
|
|
|
- pwm_apply_args(pwm);
|
|
|
-
|
|
|
put:
|
|
|
of_node_put(args.np);
|
|
|
|
|
@@ -750,13 +743,6 @@ struct pwm_device *pwm_get(struct device *dev, const char *con_id)
|
|
|
pwm->args.period = chosen->period;
|
|
|
pwm->args.polarity = chosen->polarity;
|
|
|
|
|
|
- /*
|
|
|
- * FIXME: This should be removed once all PWM users properly make use
|
|
|
- * of struct pwm_args to initialize the PWM device. As long as this is
|
|
|
- * here, the PWM state and hardware state can get out of sync.
|
|
|
- */
|
|
|
- pwm_apply_args(pwm);
|
|
|
-
|
|
|
out:
|
|
|
mutex_unlock(&pwm_lookup_lock);
|
|
|
return pwm;
|