Revert "Revert "pwm: hibvt: Explicitly set .polarity in .get_state()""

This reverts commit 6996d13954.

It was perserving the ABI, but that is not needed anymore at this point
in time.

Change-Id: I29bcae8b8b502b7c4a4b79650996d1ba2556f1c7
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Greg Kroah-Hartman 2023-04-26 12:15:22 +00:00 committed by Carlos Llamas
parent 3aceb12dc1
commit dd7c812051

View File

@ -146,6 +146,7 @@ static int hibvt_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
value = readl(base + PWM_CTRL_ADDR(pwm->hwpwm));
state->enabled = (PWM_ENABLE_MASK & value);
state->polarity = (PWM_POLARITY_MASK & value) ? PWM_POLARITY_INVERSED : PWM_POLARITY_NORMAL;
return 0;
}