aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTobias Jakobi <tjakobi@math.uni-bielefeld.de>2015-04-27 23:10:16 +0200
committerInki Dae <daeinki@gmail.com>2015-05-19 22:50:52 +0900
commit8f2590f8e3a7aeeaf2ff5a875684fc6790ae58b5 (patch)
treecfd15091d62ea34c37fe6ee16ddb537ce8caa177 /drivers
parentdrm/exynos: mixer: remove buffer count handling in vp_video_buffer() (diff)
downloadlinux-dev-8f2590f8e3a7aeeaf2ff5a875684fc6790ae58b5.tar.xz
linux-dev-8f2590f8e3a7aeeaf2ff5a875684fc6790ae58b5.zip
drm/exynos: mixer: also allow NV21 for the video processor
All the necessary code is already there, just need to handle the format in the switch statement. Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de> Acked-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/exynos/exynos_mixer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mixer.c
index 1e8ce9ee039b..adb5ec1b51ae 100644
--- a/drivers/gpu/drm/exynos/exynos_mixer.c
+++ b/drivers/gpu/drm/exynos/exynos_mixer.c
@@ -393,6 +393,9 @@ static void vp_video_buffer(struct mixer_context *ctx, int win)
case DRM_FORMAT_NV12:
crcb_mode = false;
break;
+ case DRM_FORMAT_NV21:
+ crcb_mode = true;
+ break;
default:
DRM_ERROR("pixel format for vp is wrong [%d].\n",
plane->pixel_format);