All users have been updated to the new method for building colorop
pipelines. So remove the old version.

Signed-off-by: John Harrison <[email protected]>
---
 drivers/gpu/drm/drm_colorop.c | 16 ----------------
 include/drm/drm_colorop.h     |  1 -
 2 files changed, 17 deletions(-)

diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
index b568ae942706..5a6d05557bc4 100644
--- a/drivers/gpu/drm/drm_colorop.c
+++ b/drivers/gpu/drm/drm_colorop.c
@@ -640,22 +640,6 @@ const char *drm_get_colorop_lut3d_interpolation_name(enum 
drm_colorop_lut3d_inte
        return colorop_lu3d_interpolation_name[type];
 }
 
-/**
- * drm_colorop_set_next_property - sets the next pointer
- * @colorop: drm colorop
- * @next: next colorop
- *
- * Should be used when constructing the color pipeline
- */
-void drm_colorop_set_next_property(struct drm_colorop *colorop, struct 
drm_colorop *next)
-{
-       drm_object_property_set_value(&colorop->base,
-                                     colorop->next_property,
-                                     next ? next->base.id : 0);
-       colorop->next = next;
-}
-EXPORT_SYMBOL(drm_colorop_set_next_property);
-
 /**
  * drm_colorop_add_to_pipeline - adds the given colorop to a color pipeline
  * @pipeline: drm colorop pipeline
diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h
index 5c34bc3f115f..6888d27e5592 100644
--- a/include/drm/drm_colorop.h
+++ b/include/drm/drm_colorop.h
@@ -463,7 +463,6 @@ drm_get_colorop_lut1d_interpolation_name(enum 
drm_colorop_lut1d_interpolation_ty
 const char *
 drm_get_colorop_lut3d_interpolation_name(enum 
drm_colorop_lut3d_interpolation_type type);
 
-void drm_colorop_set_next_property(struct drm_colorop *colorop, struct 
drm_colorop *next);
 void drm_colorop_add_to_pipeline(struct drm_colorop *pipeline, struct 
drm_colorop *colorop);
 
 #endif /* __DRM_COLOROP_H__ */
-- 
2.43.0

Reply via email to