diff options
author | Dave Airlie <airlied@redhat.com> | 2018-10-19 05:51:55 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-10-19 05:52:03 +0200 |
commit | f8e6e1b6f0ae3bb91cdcd08213d36a0ce6e98535 (patch) | |
tree | 44c5aed65fb2e435e514b900822cd752fad28424 /include | |
parent | Linux 4.19-rc8 (diff) | |
parent | drm/edid: VSDB yCBCr420 Deep Color mode bit definitions (diff) | |
download | linux-f8e6e1b6f0ae3bb91cdcd08213d36a0ce6e98535.tar.xz linux-f8e6e1b6f0ae3bb91cdcd08213d36a0ce6e98535.zip |
Merge tag 'drm-misc-fixes-2018-10-18' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
drm-misc-fixes for v4.19:
- Fix use of freed memory in drm_mode_setcrtc.
- Reject pixel format changing requests in fb helper.
- Add 6 bpc quirk for HP Pavilion 15-n233sl
- Fix VSDB yCBCr420 Deep Color mode bit definitions
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/647fe5d0-4ec5-57cc-9f23-a4836b29e278@linux.intel.com
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm_edid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/drm_edid.h b/include/drm/drm_edid.h index b25d12ef120a..e3c404833115 100644 --- a/include/drm/drm_edid.h +++ b/include/drm/drm_edid.h @@ -214,9 +214,9 @@ struct detailed_timing { #define DRM_EDID_HDMI_DC_Y444 (1 << 3) /* YCBCR 420 deep color modes */ -#define DRM_EDID_YCBCR420_DC_48 (1 << 6) -#define DRM_EDID_YCBCR420_DC_36 (1 << 5) -#define DRM_EDID_YCBCR420_DC_30 (1 << 4) +#define DRM_EDID_YCBCR420_DC_48 (1 << 2) +#define DRM_EDID_YCBCR420_DC_36 (1 << 1) +#define DRM_EDID_YCBCR420_DC_30 (1 << 0) #define DRM_EDID_YCBCR420_DC_MASK (DRM_EDID_YCBCR420_DC_48 | \ DRM_EDID_YCBCR420_DC_36 | \ DRM_EDID_YCBCR420_DC_30) |