mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 07:34:06 +08:00
drm/i915: Use vlv_clock() in vlv_crtc_clock_get()
Avoid some code duplication. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
fb03ac0106
commit
f646628b9f
@ -5215,10 +5215,10 @@ static void vlv_crtc_clock_get(struct intel_crtc *crtc,
|
||||
clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
|
||||
clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
|
||||
|
||||
clock.vco = refclk * clock.m1 * clock.m2 / clock.n;
|
||||
clock.dot = 2 * clock.vco / (clock.p1 * clock.p2);
|
||||
vlv_clock(refclk, &clock);
|
||||
|
||||
pipe_config->port_clock = clock.dot / 10;
|
||||
/* clock.dot is the fast clock */
|
||||
pipe_config->port_clock = clock.dot / 5;
|
||||
}
|
||||
|
||||
static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
|
||||
|
Loading…
Reference in New Issue
Block a user