View | Details | Raw Unified | Return to bug 29502
Collapse All | Expand All

(-)a/drivers/gpu/drm/radeon/radeon_display.c (-2 / +1 lines)
Lines 971-977 void radeon_compute_pll_legacy(struct radeon_pll *pll, Link Here
971
		max_fractional_feed_div = pll->max_frac_feedback_div;
971
		max_fractional_feed_div = pll->max_frac_feedback_div;
972
	}
972
	}
973
973
974
	for (post_div = min_post_div; post_div <= max_post_div; ++post_div) {
974
	for (post_div = max_post_div; post_div >= min_post_div; --post_div) {
975
		uint32_t ref_div;
975
		uint32_t ref_div;
976
976
977
		if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1))
977
		if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1))
978
- 

Return to bug 29502