diff mbox series

[2/2] drm: Fix kdoc typo for drm_properties

Message ID 20200605124037.2918-2-ramalingam.c@intel.com (mailing list archive)
State New, archived
Headers show
Series [1/2] drm: cleanup on drm_mode_object_find | expand

Commit Message

Ramalingam C June 5, 2020, 12:40 p.m. UTC
Typo in the KDoc for the DRM_MODE_PROP_SIGNED_RANGE type of
drm_properties is fixed.

Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
---
 include/drm/drm_property.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/include/drm/drm_property.h b/include/drm/drm_property.h
index 4a0a80d658c7..5d1874b6ccfc 100644
--- a/include/drm/drm_property.h
+++ b/include/drm/drm_property.h
@@ -94,7 +94,7 @@  struct drm_property {
 	 *     drm_property_create_range().
 	 *
 	 * DRM_MODE_PROP_SIGNED_RANGE
-	 *     Range properties report their minimum and maximum admissible unsigned values.
+	 *     Range properties report their minimum and maximum admissible signed values.
 	 *     The KMS core verifies that values set by application fit in that
 	 *     range. The range is signed. Range properties are created using
 	 *     drm_property_create_signed_range().