瀏覽代碼

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>
Tobias Jakobi 10 年之前
父節點
當前提交
8f2590f8e3
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      drivers/gpu/drm/exynos/exynos_mixer.c

+ 3 - 0
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);