Commit 37c7c23a authored by Simon Ser's avatar Simon Ser

drm: fix whitespace in drm_plane_create_color_properties()

The drm_property_create_enum() call for "COLOR_RANGE" contains a tab
character in the middle of the argument list.
Signed-off-by: default avatarSimon Ser <contact@emersion.fr>
Reviewed-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220803204240.33409-1-contact@emersion.fr
parent 1d8104e0
...@@ -575,7 +575,7 @@ int drm_plane_create_color_properties(struct drm_plane *plane, ...@@ -575,7 +575,7 @@ int drm_plane_create_color_properties(struct drm_plane *plane,
len++; len++;
} }
prop = drm_property_create_enum(dev, 0, "COLOR_RANGE", prop = drm_property_create_enum(dev, 0, "COLOR_RANGE",
enum_list, len); enum_list, len);
if (!prop) if (!prop)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment