drm/i915: Nuke atomic set/get prop plane stubs
[sfrench/cifs-2.6.git] / drivers / gpu / drm / i915 / intel_atomic_plane.c
index 58ea1b672a1a4c381cf76ae091fac2ff9c3e3038..30bd4e76fff910b43aad0d0bceda13cfb0656eff 100644 (file)
@@ -353,48 +353,3 @@ const struct drm_plane_helper_funcs intel_plane_helper_funcs = {
        .cleanup_fb = intel_cleanup_plane_fb,
        .atomic_check = intel_plane_atomic_check,
 };
-
-/**
- * intel_plane_atomic_get_property - fetch plane property value
- * @plane: plane to fetch property for
- * @state: state containing the property value
- * @property: property to look up
- * @val: pointer to write property value into
- *
- * The DRM core does not store shadow copies of properties for
- * atomic-capable drivers.  This entrypoint is used to fetch
- * the current value of a driver-specific plane property.
- */
-int
-intel_plane_atomic_get_property(struct drm_plane *plane,
-                               const struct drm_plane_state *state,
-                               struct drm_property *property,
-                               u64 *val)
-{
-       DRM_DEBUG_KMS("Unknown property [PROP:%d:%s]\n",
-                     property->base.id, property->name);
-       return -EINVAL;
-}
-
-/**
- * intel_plane_atomic_set_property - set plane property value
- * @plane: plane to set property for
- * @state: state to update property value in
- * @property: property to set
- * @val: value to set property to
- *
- * Writes the specified property value for a plane into the provided atomic
- * state object.
- *
- * Returns 0 on success, -EINVAL on unrecognized properties
- */
-int
-intel_plane_atomic_set_property(struct drm_plane *plane,
-                               struct drm_plane_state *state,
-                               struct drm_property *property,
-                               u64 val)
-{
-       DRM_DEBUG_KMS("Unknown property [PROP:%d:%s]\n",
-                     property->base.id, property->name);
-       return -EINVAL;
-}