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 --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().