summaryrefslogtreecommitdiff
path: root/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'screen.h')
0 files changed, 0 insertions, 0 deletions
ux/net-next.git/diff/?id=1aaab34878ac14efede3f0e737b99447745699d1&id2=92e963f50fc74041b5e9e744c330dca48e04f08d'>diff)
regulator: pwm: Fix calculation of voltage-to-duty cycle
With following equation for calculating voltage_to_duty_cycle_percentage 100 - (((req_uV * 100) - (min_uV * 100)) / diff); we get 0% for max_uV and 100% for min_uV. Correcting this to ((req_uV * 100) - (min_uV * 100)) / diff; to get proper duty cycle. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat