View | Details | Raw Unified | Return to bug 26552 | Differences between
and this patch

Collapse All | Expand All

(-)a/drivers/gpu/drm/radeon/radeon_display.c (-2 / +1 lines)
Lines 849-855 void radeon_compute_pll(struct radeon_pll *pll, Link Here
849
		max_fractional_feed_div = pll->max_frac_feedback_div;
849
		max_fractional_feed_div = pll->max_frac_feedback_div;
850
	}
850
	}
851
851
852
	for (post_div = max_post_div; post_div >= min_post_div; --post_div) {
852
	for (post_div = min_post_div; post_div <= max_post_div; ++post_div) {
853
		uint32_t ref_div;
853
		uint32_t ref_div;
854
854
855
		if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1))
855
		if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1))
856
- 

Return to bug 26552