static void pwm_backlight_power_on(struct pwm_bl_data *pb)
 {
-       struct pwm_state state;
        int err;
 
-       pwm_get_state(pb->pwm, &state);
        if (pb->enabled)
                return;
 
        if (err < 0)
                dev_err(pb->dev, "failed to enable power supply\n");
 
-       state.enabled = true;
-       pwm_apply_state(pb->pwm, &state);
-
        if (pb->post_pwm_on_delay)
                msleep(pb->post_pwm_on_delay);
 
 
 static void pwm_backlight_power_off(struct pwm_bl_data *pb)
 {
-       struct pwm_state state;
-
-       pwm_get_state(pb->pwm, &state);
        if (!pb->enabled)
                return;
 
        if (pb->pwm_off_delay)
                msleep(pb->pwm_off_delay);
 
-       state.enabled = false;
-       state.duty_cycle = 0;
-       pwm_apply_state(pb->pwm, &state);
-
        regulator_disable(pb->power_supply);
        pb->enabled = false;
 }
 
-static int compute_duty_cycle(struct pwm_bl_data *pb, int brightness)
+static int compute_duty_cycle(struct pwm_bl_data *pb, int brightness, struct pwm_state *state)
 {
        unsigned int lth = pb->lth_brightness;
-       struct pwm_state state;
        u64 duty_cycle;
 
-       pwm_get_state(pb->pwm, &state);
-
        if (pb->levels)
                duty_cycle = pb->levels[brightness];
        else
                duty_cycle = brightness;
 
-       duty_cycle *= state.period - lth;
+       duty_cycle *= state->period - lth;
        do_div(duty_cycle, pb->scale);
 
        return duty_cycle + lth;
 
        if (brightness > 0) {
                pwm_get_state(pb->pwm, &state);
-               state.duty_cycle = compute_duty_cycle(pb, brightness);
+               state.duty_cycle = compute_duty_cycle(pb, brightness, &state);
+               state.enabled = true;
                pwm_apply_state(pb->pwm, &state);
+
                pwm_backlight_power_on(pb);
        } else {
                pwm_backlight_power_off(pb);
+
+               pwm_get_state(pb->pwm, &state);
+               state.enabled = false;
+               state.duty_cycle = 0;
+               pwm_apply_state(pb->pwm, &state);
        }
 
        if (pb->notify_after)