diff options
author | Joonyoung Shim <jy0922.shim@samsung.com> | 2015-04-07 15:59:38 +0900 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2015-04-13 11:39:41 +0900 |
commit | cb8a3db29f8fa8186185ba716f3f485a7f3fabe7 (patch) | |
tree | c5b5e88c568f92c83b02dd9bc3d9bec214b06e2a /drivers/gpu/drm/exynos/exynos_drm_plane.c | |
parent | 2611015c7511106719bae904cac459383c55ffef (diff) | |
download | blackbird-obmc-linux-cb8a3db29f8fa8186185ba716f3f485a7f3fabe7.tar.gz blackbird-obmc-linux-cb8a3db29f8fa8186185ba716f3f485a7f3fabe7.zip |
drm/exynos: use src_x and src_y instead of fb_x and fb_y
It's more reasonable to use src_x and src_y to represent source as
counterpart of destination(crtc). Already we are using src_width and
src_height for width and height of source.
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_plane.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_plane.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_plane.c b/drivers/gpu/drm/exynos/exynos_drm_plane.c index 043a6ba2e842..5cb4ced9c4b5 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_plane.c +++ b/drivers/gpu/drm/exynos/exynos_drm_plane.c @@ -111,12 +111,12 @@ void exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc, } /* set drm framebuffer data. */ - exynos_plane->fb_x = src_x; - exynos_plane->fb_y = src_y; - exynos_plane->fb_width = fb->width; - exynos_plane->fb_height = fb->height; + exynos_plane->src_x = src_x; + exynos_plane->src_y = src_y; exynos_plane->src_width = src_w; exynos_plane->src_height = src_h; + exynos_plane->fb_width = fb->width; + exynos_plane->fb_height = fb->height; exynos_plane->bpp = fb->bits_per_pixel; exynos_plane->pitch = fb->pitches[0]; exynos_plane->pixel_format = fb->pixel_format; |