diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2012-05-14 11:08:51 +0900 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2012-06-05 11:51:43 +0900 |
commit | 363b06aaa59fc20d0a9c5a5a9ce1fa2c45946700 (patch) | |
tree | e3c915db940b1f9321adfa968eba779f86b610cd /drivers/gpu/drm/exynos/exynos_drm_fb.h | |
parent | 47819ba234d41465b76f179ba674ff549255a5d2 (diff) | |
download | linux-363b06aaa59fc20d0a9c5a5a9ce1fa2c45946700.tar.gz linux-363b06aaa59fc20d0a9c5a5a9ce1fa2c45946700.tar.bz2 linux-363b06aaa59fc20d0a9c5a5a9ce1fa2c45946700.zip |
drm/exynos: Use DRM_FORMAT_{NV12, YUV420} instead of DRM_FORMAT_{NV12M, YUV420M}
The NV12M/YUV420M formats are identical to the already existing standard
NV12/YUV420 formats. The M variants will be removed, so convert the
driver to use the standard names.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_fb.h')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_fb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fb.h b/drivers/gpu/drm/exynos/exynos_drm_fb.h index 3ecb30d93552..50823756cdea 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fb.h +++ b/drivers/gpu/drm/exynos/exynos_drm_fb.h @@ -31,10 +31,10 @@ static inline int exynos_drm_format_num_buffers(uint32_t format) { switch (format) { - case DRM_FORMAT_NV12M: + case DRM_FORMAT_NV12: case DRM_FORMAT_NV12MT: return 2; - case DRM_FORMAT_YUV420M: + case DRM_FORMAT_YUV420: return 3; default: return 1; |