]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/amdgpu: Fix kernel-doc comments for some LUT properties
authorCristian Ciocaltea <cristian.ciocaltea@collabora.com>
Thu, 5 Mar 2026 11:16:36 +0000 (13:16 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 6 Mar 2026 22:11:15 +0000 (17:11 -0500)
The following members of struct amdgpu_mode_info do not have valid
references in the related kernel-doc sections:

 - plane_shaper_lut_property
 - plane_shaper_lut_size_property,
 - plane_lut3d_size_property

Correct all affected comment blocks.

Fixes: f545d82479b4 ("drm/amd/display: add plane shaper LUT and TF driver-specific properties")
Fixes: 671994e3bf33 ("drm/amd/display: add plane 3D LUT driver-specific properties")
Reviewed-by: Melissa Wen <mwen@igalia.com>
Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit ec5708d6e547f7efe2f009073bfa98dbc4c5c2ac)

drivers/gpu/drm/amd/amdgpu/amdgpu_mode.h

index dc8d2f52c7d615a94a294929ae680560fb04bf60..e244c12ceb2389ec0de2083ac6514e4498884155 100644 (file)
@@ -368,15 +368,15 @@ struct amdgpu_mode_info {
 
        struct drm_property *plane_ctm_property;
        /**
-        * @shaper_lut_property: Plane property to set pre-blending shaper LUT
-        * that converts color content before 3D LUT. If
-        * plane_shaper_tf_property != Identity TF, AMD color module will
+        * @plane_shaper_lut_property: Plane property to set pre-blending
+        * shaper LUT that converts color content before 3D LUT.
+        * If plane_shaper_tf_property != Identity TF, AMD color module will
         * combine the user LUT values with pre-defined TF into the LUT
         * parameters to be programmed.
         */
        struct drm_property *plane_shaper_lut_property;
        /**
-        * @shaper_lut_size_property: Plane property for the size of
+        * @plane_shaper_lut_size_property: Plane property for the size of
         * pre-blending shaper LUT as supported by the driver (read-only).
         */
        struct drm_property *plane_shaper_lut_size_property;
@@ -400,10 +400,10 @@ struct amdgpu_mode_info {
         */
        struct drm_property *plane_lut3d_property;
        /**
-        * @plane_degamma_lut_size_property: Plane property to define the max
-        * size of 3D LUT as supported by the driver (read-only). The max size
-        * is the max size of one dimension and, therefore, the max number of
-        * entries for 3D LUT array is the 3D LUT size cubed;
+        * @plane_lut3d_size_property: Plane property to define the max size
+        * of 3D LUT as supported by the driver (read-only). The max size is
+        * the max size of one dimension and, therefore, the max number of
+        * entries for 3D LUT array is the 3D LUT size cubed.
         */
        struct drm_property *plane_lut3d_size_property;
        /**