summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>2023-09-06 22:47:38 +0200
committerMaxime Ripard <mripard@kernel.org>2023-09-07 16:32:21 +0200
commit9eeba919dd0f524f73feeeef82f3ca877f9ccce4 (patch)
tree702a6252f33f5e14f3a0058c9f0ed905a134c53c /include/drm
parent481fc9e7e11d8ace7e7ae4df1b7ebb5aa4e97789 (diff)
downloadlinux-9eeba919dd0f524f73feeeef82f3ca877f9ccce4.tar.gz
linux-9eeba919dd0f524f73feeeef82f3ca877f9ccce4.tar.bz2
linux-9eeba919dd0f524f73feeeef82f3ca877f9ccce4.zip
drm/connector: document DRM_MODE_COLORIMETRY_COUNT
The drm_colorspace enum member DRM_MODE_COLORIMETRY_COUNT has been properly documented by moving the description out of the enum to the member description list to get rid of an additional warning and improve documentation clarity. Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Maxime Ripard <mripard@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230906-topic-drm_connector_doc-v2-1-1f2dcaa43269@gmail.com
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_connector.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index d300fde6c1a4..18cf46e3478b 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -498,6 +498,8 @@ enum drm_privacy_screen_status {
* ITU-R BT.601 colorimetry format
* The DP spec does not say whether this is the 525 or the 625
* line version.
+ * @DRM_MODE_COLORIMETRY_COUNT:
+ * Not a valid value; merely used four counting
*/
enum drm_colorspace {
/* For Default case, driver will set the colorspace */
@@ -522,7 +524,6 @@ enum drm_colorspace {
DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED = 13,
DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT = 14,
DRM_MODE_COLORIMETRY_BT601_YCC = 15,
- /* not a valid value; merely used for counting */
DRM_MODE_COLORIMETRY_COUNT
};