Re: [Intel-gfx] [PATCH 02/14] drm/i915: Use DIV_ROUND_CLOSEST()

2013-09-27 Thread Daniel Vetter
On Thu, Sep 26, 2013 at 01:09:26PM +0300, Mika Kuoppala wrote: > ville.syrj...@linux.intel.com writes: > > > From: Ville Syrjälä > > > > vlv_find_best_dpll() has an open coded DIV_ROUND_CLOSEST(). Replace it > > with the real thing. > > > > Signed-off-by: Ville Syrjälä > > --- > > drivers/gpu/d

Re: [Intel-gfx] [PATCH 02/14] drm/i915: Use DIV_ROUND_CLOSEST()

2013-09-26 Thread Mika Kuoppala
ville.syrj...@linux.intel.com writes: > From: Ville Syrjälä > > vlv_find_best_dpll() has an open coded DIV_ROUND_CLOSEST(). Replace it > with the real thing. > > Signed-off-by: Ville Syrjälä > --- > drivers/gpu/drm/i915/intel_display.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) >

[Intel-gfx] [PATCH 02/14] drm/i915: Use DIV_ROUND_CLOSEST()

2013-09-24 Thread ville . syrjala
From: Ville Syrjälä vlv_find_best_dpll() has an open coded DIV_ROUND_CLOSEST(). Replace it with the real thing. Signed-off-by: Ville Syrjälä --- drivers/gpu/drm/i915/intel_display.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_display.c b/dr