|
|
@@ -2538,9 +2538,9 @@ cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
|
|
|
* and the 60Hz variant otherwise.
|
|
|
*/
|
|
|
if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
|
|
|
- clock = clock * 1001 / 1000;
|
|
|
+ clock = DIV_ROUND_CLOSEST(clock * 1001, 1000);
|
|
|
else
|
|
|
- clock = DIV_ROUND_UP(clock * 1000, 1001);
|
|
|
+ clock = DIV_ROUND_CLOSEST(clock * 1000, 1001);
|
|
|
|
|
|
return clock;
|
|
|
}
|