aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_plane.c
diff options
context:
space:
mode:
authorDmitry Baryshkov <[email protected]>2023-12-04 13:13:50 +0000
committerDmitry Baryshkov <[email protected]>2023-12-04 19:33:07 +0000
commita513f095b941e9e96196f04f11f253d763310c08 (patch)
tree04981b37fc469523d7e4aebc112d67efef7ed2ed /drivers/gpu/drm/drm_plane.c
parentRevert "drm/atomic: Move framebuffer checks to helper" (diff)
downloadkernel-a513f095b941e9e96196f04f11f253d763310c08.tar.gz
kernel-a513f095b941e9e96196f04f11f253d763310c08.zip
Revert "drm/atomic: Add solid fill data to plane state dump"
This reverts commit e86413f5442ee094e66b3e75f2d3419ed0df9520. Although the Solid Fill planes patchset got all reviews and acknowledgements, it doesn't fulfill requirements for the new uABI. It has neither corresponding open-source userspace implementation nor the IGT tests coverage. Reverting this patchset until userspace obligations are fulfilled. Acked-by: Simon Ser <[email protected]> Acked-by: Maxime Ripard <[email protected]> Signed-off-by: Dmitry Baryshkov <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/drm_plane.c')
-rw-r--r--drivers/gpu/drm/drm_plane.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c
index c65c72701dd2..c8dbe5ae60cc 100644
--- a/drivers/gpu/drm/drm_plane.c
+++ b/drivers/gpu/drm/drm_plane.c
@@ -1641,14 +1641,6 @@ __drm_plane_get_damage_clips(const struct drm_plane_state *state)
state->fb_damage_clips->data : NULL);
}
-void drm_plane_solid_fill_print_info(struct drm_printer *p, unsigned int indent,
- const struct drm_plane_state *state)
-{
- drm_printf_indent(p, indent, "r=0x%08x\n", state->solid_fill.r);
- drm_printf_indent(p, indent, "g=0x%08x\n", state->solid_fill.g);
- drm_printf_indent(p, indent, "b=0x%08x\n", state->solid_fill.b);
-}
-
/**
* drm_plane_get_damage_clips - Returns damage clips.
* @state: Plane state.