summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_crtc_helper.c
diff options
context:
space:
mode:
authorFabien DESSENNE <fabien.dessenne@st.com>2014-07-01 14:40:42 +0200
committerDave Airlie <airlied@redhat.com>2014-07-08 11:18:47 +1000
commitd980b1831c14b233434555a851adf6c74fe9d19e (patch)
tree6a7e092c8123981b9c4b1fd31feea6d40e175fb6 /drivers/gpu/drm/drm_crtc_helper.c
parente3f202798aaa808e7a38faa8c3a9f0aa93b85cc0 (diff)
downloadlinux-0-day-d980b1831c14b233434555a851adf6c74fe9d19e.tar.gz
linux-0-day-d980b1831c14b233434555a851adf6c74fe9d19e.tar.xz
drm/crtc-helper: use drm_framebuffer flags
The "flags" parameter of the DRM_IOCTL_MODE_ADDFB2 ioctl must be propagated and used by the driver. The only possible value of flags is DRM_MODE_FB_INTERLACED. Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com> Reviewed-by: Benjamin GAIGNARD <benjamin.gaignard@st.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc_helper.c')
-rw-r--r--drivers/gpu/drm/drm_crtc_helper.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
index 78b37f3febd37..6c65a0a28fbde 100644
--- a/drivers/gpu/drm/drm_crtc_helper.c
+++ b/drivers/gpu/drm/drm_crtc_helper.c
@@ -818,6 +818,7 @@ void drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
&fb->bits_per_pixel);
fb->pixel_format = mode_cmd->pixel_format;
+ fb->flags = mode_cmd->flags;
}
EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);