Commit 4227685b authored by Denis Osterland-Heim's avatar Denis Osterland-Heim Committed by Pavel Machek

leds: pwm: remove useless pwm_period_ns

This member seems to was a way to pass PWM period to the LED.
Since there is no header anymore, this is useless.
Signed-off-by: default avatarDenis Osterland-Heim <Denis.Osterland@diehl.com>
Signed-off-by: default avatarPavel Machek <pavel@ucw.cz>
parent 141f15c6
......@@ -23,7 +23,6 @@ struct led_pwm {
const char *default_trigger;
u8 active_low;
unsigned int max_brightness;
unsigned int pwm_period_ns;
};
struct led_pwm_platform_data {
......@@ -91,9 +90,6 @@ static int led_pwm_add(struct device *dev, struct led_pwm_priv *priv,
pwm_init_state(led_data->pwm, &led_data->pwmstate);
if (!led_data->pwmstate.period)
led_data->pwmstate.period = led->pwm_period_ns;
ret = devm_led_classdev_register(dev, &led_data->cdev);
if (ret == 0) {
priv->num_leds++;
......
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