aboutsummaryrefslogtreecommitdiff
path: root/include/drm/drm_connector.h
diff options
context:
space:
mode:
authorGravatar Maxime Ripard <maxime@cerno.tech> 2022-01-20 16:16:13 +0100
committerGravatar Maxime Ripard <maxime@cerno.tech> 2022-01-25 10:01:44 +0100
commitc03d0b52ff71d580ee235463c7ca9eac31351dcd (patch)
treeda186d8bce17127cd1911fcfa6bdeb7a798688eb /include/drm/drm_connector.h
parentdrm/edid: Split deep color modes between RGB and YUV444 (diff)
downloadlinux-c03d0b52ff71d580ee235463c7ca9eac31351dcd.tar.gz
linux-c03d0b52ff71d580ee235463c7ca9eac31351dcd.tar.bz2
linux-c03d0b52ff71d580ee235463c7ca9eac31351dcd.zip
drm/connector: Fix typo in output format
The HDMI specification mentions YCbCr everywhere, but our enums have YCrCb. Let's rename it to match. Signed-off-by: Maxime Ripard <maxime@cerno.tech> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20220120151625.594595-5-maxime@cerno.tech
Diffstat (limited to 'include/drm/drm_connector.h')
-rw-r--r--include/drm/drm_connector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index eaf0ef5f1843..64cf5f88c05b 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -522,9 +522,9 @@ struct drm_display_info {
enum subpixel_order subpixel_order;
#define DRM_COLOR_FORMAT_RGB444 (1<<0)
-#define DRM_COLOR_FORMAT_YCRCB444 (1<<1)
-#define DRM_COLOR_FORMAT_YCRCB422 (1<<2)
-#define DRM_COLOR_FORMAT_YCRCB420 (1<<3)
+#define DRM_COLOR_FORMAT_YCBCR444 (1<<1)
+#define DRM_COLOR_FORMAT_YCBCR422 (1<<2)
+#define DRM_COLOR_FORMAT_YCBCR420 (1<<3)
/**
* @panel_orientation: Read only connector property for built-in panels,