mirror of https://gitee.com/openkylin/linux.git
drm/i915: fill in more mode members
Fill in driver type, hsync, vrefresh and name. Those members are not read out but can be calculated from the mode. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
430b7ad5d3
commit
cd13f5ab42
|
@ -7817,9 +7817,14 @@ void intel_mode_from_pipe_config(struct drm_display_mode *mode,
|
|||
mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
|
||||
|
||||
mode->flags = pipe_config->base.adjusted_mode.flags;
|
||||
mode->type = DRM_MODE_TYPE_DRIVER;
|
||||
|
||||
mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
|
||||
mode->flags |= pipe_config->base.adjusted_mode.flags;
|
||||
|
||||
mode->hsync = drm_mode_hsync(mode);
|
||||
mode->vrefresh = drm_mode_vrefresh(mode);
|
||||
drm_mode_set_name(mode);
|
||||
}
|
||||
|
||||
static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
|
||||
|
|
Loading…
Reference in New Issue