Commit 356af0e1 authored by Rob Clark's avatar Rob Clark Committed by Daniel Vetter

drm: small property creation cleanup

Getting ready to add a lot more standard properties for atomic.
Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
[danvet: Realign function paramaters where the lines shrunk
massively.]
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 5e743737
...@@ -1325,33 +1325,40 @@ EXPORT_SYMBOL(drm_plane_force_disable); ...@@ -1325,33 +1325,40 @@ EXPORT_SYMBOL(drm_plane_force_disable);
static int drm_mode_create_standard_connector_properties(struct drm_device *dev) static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
{ {
struct drm_property *edid; struct drm_property *prop;
struct drm_property *dpms;
struct drm_property *dev_path;
/* /*
* Standard properties (apply to all connectors) * Standard properties (apply to all connectors)
*/ */
edid = drm_property_create(dev, DRM_MODE_PROP_BLOB | prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
DRM_MODE_PROP_IMMUTABLE, DRM_MODE_PROP_IMMUTABLE,
"EDID", 0); "EDID", 0);
dev->mode_config.edid_property = edid; if (!prop)
return -ENOMEM;
dev->mode_config.edid_property = prop;
dpms = drm_property_create_enum(dev, 0, prop = drm_property_create_enum(dev, 0,
"DPMS", drm_dpms_enum_list, "DPMS", drm_dpms_enum_list,
ARRAY_SIZE(drm_dpms_enum_list)); ARRAY_SIZE(drm_dpms_enum_list));
dev->mode_config.dpms_property = dpms; if (!prop)
return -ENOMEM;
dev_path = drm_property_create(dev, dev->mode_config.dpms_property = prop;
DRM_MODE_PROP_BLOB |
DRM_MODE_PROP_IMMUTABLE, prop = drm_property_create(dev,
"PATH", 0); DRM_MODE_PROP_BLOB |
dev->mode_config.path_property = dev_path; DRM_MODE_PROP_IMMUTABLE,
"PATH", 0);
dev->mode_config.tile_property = drm_property_create(dev, if (!prop)
DRM_MODE_PROP_BLOB | return -ENOMEM;
DRM_MODE_PROP_IMMUTABLE, dev->mode_config.path_property = prop;
"TILE", 0);
prop = drm_property_create(dev,
DRM_MODE_PROP_BLOB |
DRM_MODE_PROP_IMMUTABLE,
"TILE", 0);
if (!prop)
return -ENOMEM;
dev->mode_config.tile_property = prop;
return 0; return 0;
} }
......
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