Commit e802cbaf authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Lee Jones

backlight: pwm_bl: Eliminate a 64/32 division

lightness*1000 is nowhere near overflowing 32 bits, so we can just use
an ordinary 32/32 division, which is much cheaper than the 64/32 done
via do_div().
Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Reviewed-by: default avatarDaniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent efdf690e
...@@ -178,7 +178,7 @@ static u64 cie1931(unsigned int lightness, unsigned int scale) ...@@ -178,7 +178,7 @@ static u64 cie1931(unsigned int lightness, unsigned int scale)
*/ */
lightness *= 100; lightness *= 100;
if (lightness <= (8 * scale)) { if (lightness <= (8 * scale)) {
retval = DIV_ROUND_CLOSEST_ULL(lightness * 10, 9033); retval = DIV_ROUND_CLOSEST(lightness * 10, 9033);
} else { } else {
retval = int_pow((lightness + (16 * scale)) / 116, 3); retval = int_pow((lightness + (16 * scale)) / 116, 3);
retval = DIV_ROUND_CLOSEST_ULL(retval, (scale * scale)); retval = DIV_ROUND_CLOSEST_ULL(retval, (scale * scale));
......
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