Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cbe65513 authored by Christian König's avatar Christian König
Browse files

drm/radeon: lower the ref * post PLL maximum

parent cde10122
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -862,7 +862,7 @@ static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div,
				 unsigned *fb_div, unsigned *ref_div)
{
	/* limit reference * post divider to a maximum */
	ref_div_max = min(210 / post_div, ref_div_max);
	ref_div_max = min(128 / post_div, ref_div_max);

	/* get matching reference and feedback divider */
	*ref_div = min(max(DIV_ROUND_CLOSEST(den, post_div), 1u), ref_div_max);