Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58495563 authored by Rob Clark's avatar Rob Clark Committed by Rob Clark
Browse files

drm: remove legacy drm_connector_property fxns



Replace references to and remove the connector property fxns, which
have been superseded with the more general object property fxns:

  + drm_connector_attach_property -> drm_object_attach_property
  + drm_connector_property_set_value -> drm_object_property_set_value
  + drm_connector_property_get_value -> drm_object_property_get_value

Signed-off-by: default avatarRob Clark <rob@ti.com>
parent 2db83827
Loading
Loading
Loading
Loading
+5 −26
Original line number Diff line number Diff line
@@ -559,11 +559,11 @@ int drm_connector_init(struct drm_device *dev,
	dev->mode_config.num_connector++;

	if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
		drm_connector_attach_property(connector,
		drm_object_attach_property(&connector->base,
					      dev->mode_config.edid_property,
					      0);

	drm_connector_attach_property(connector,
	drm_object_attach_property(&connector->base,
				      dev->mode_config.dpms_property, 0);

 out:
@@ -2928,27 +2928,6 @@ void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
}
EXPORT_SYMBOL(drm_property_destroy);

void drm_connector_attach_property(struct drm_connector *connector,
			       struct drm_property *property, uint64_t init_val)
{
	drm_object_attach_property(&connector->base, property, init_val);
}
EXPORT_SYMBOL(drm_connector_attach_property);

int drm_connector_property_set_value(struct drm_connector *connector,
				  struct drm_property *property, uint64_t value)
{
	return drm_object_property_set_value(&connector->base, property, value);
}
EXPORT_SYMBOL(drm_connector_property_set_value);

int drm_connector_property_get_value(struct drm_connector *connector,
				  struct drm_property *property, uint64_t *val)
{
	return drm_object_property_get_value(&connector->base, property, val);
}
EXPORT_SYMBOL(drm_connector_property_get_value);

void drm_object_attach_property(struct drm_mode_object *obj,
				struct drm_property *property,
				uint64_t init_val)
@@ -3185,7 +3164,7 @@ int drm_mode_connector_update_edid_property(struct drm_connector *connector,
	/* Delete edid, when there is none. */
	if (!edid) {
		connector->edid_blob_ptr = NULL;
		ret = drm_connector_property_set_value(connector, dev->mode_config.edid_property, 0);
		ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
		return ret;
	}

@@ -3195,7 +3174,7 @@ int drm_mode_connector_update_edid_property(struct drm_connector *connector,
	if (!connector->edid_blob_ptr)
		return -EINVAL;

	ret = drm_connector_property_set_value(connector,
	ret = drm_object_property_set_value(&connector->base,
					       dev->mode_config.edid_property,
					       connector->edid_blob_ptr->base.id);

@@ -3262,7 +3241,7 @@ static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,

	/* store the property value if successful */
	if (!ret)
		drm_connector_property_set_value(connector, property, value);
		drm_object_property_set_value(&connector->base, property, value);
	return ret;
}

+1 −1
Original line number Diff line number Diff line
@@ -348,7 +348,7 @@ static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
		for (j = 0; j < fb_helper->connector_count; j++) {
			connector = fb_helper->connector_info[j]->connector;
			connector->funcs->dpms(connector, dpms_mode);
			drm_connector_property_set_value(connector,
			drm_object_property_set_value(&connector->base,
				dev->mode_config.dpms_property, dpms_mode);
		}
	}
+3 −3
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ static ssize_t dpms_show(struct device *device,
	uint64_t dpms_status;
	int ret;

	ret = drm_connector_property_get_value(connector,
	ret = drm_object_property_get_value(&connector->base,
					    dev->mode_config.dpms_property,
					    &dpms_status);
	if (ret)
@@ -277,7 +277,7 @@ static ssize_t subconnector_show(struct device *device,
		return 0;
	}

	ret = drm_connector_property_get_value(connector, prop, &subconnector);
	ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
	if (ret)
		return 0;

@@ -318,7 +318,7 @@ static ssize_t select_subconnector_show(struct device *device,
		return 0;
	}

	ret = drm_connector_property_get_value(connector, prop, &subconnector);
	ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
	if (ret)
		return 0;

+0 −8
Original line number Diff line number Diff line
@@ -920,12 +920,6 @@ extern void drm_mode_set_crtcinfo(struct drm_display_mode *p,
extern void drm_mode_connector_list_update(struct drm_connector *connector);
extern int drm_mode_connector_update_edid_property(struct drm_connector *connector,
						struct edid *edid);
extern int drm_connector_property_set_value(struct drm_connector *connector,
					 struct drm_property *property,
					 uint64_t value);
extern int drm_connector_property_get_value(struct drm_connector *connector,
					 struct drm_property *property,
					 uint64_t *value);
extern int drm_object_property_set_value(struct drm_mode_object *obj,
					 struct drm_property *property,
					 uint64_t val);
@@ -947,8 +941,6 @@ extern int drmfb_remove(struct drm_device *dev, struct drm_framebuffer *fb);
extern void drm_crtc_probe_connector_modes(struct drm_device *dev, int maxX, int maxY);
extern bool drm_crtc_in_use(struct drm_crtc *crtc);

extern void drm_connector_attach_property(struct drm_connector *connector,
					  struct drm_property *property, uint64_t init_val);
extern void drm_object_attach_property(struct drm_mode_object *obj,
				       struct drm_property *property,
				       uint64_t init_val);