diff options
author | Laurent Pinchart <[email protected]> | 2021-08-06 14:29:52 +0300 |
---|---|---|
committer | Laurent Pinchart <[email protected]> | 2022-10-19 16:51:03 +0300 |
commit | c7bfa73cdfeb66f3c9170e05cab3aa160c93a95b (patch) | |
tree | 81d7240e936f70ca698efdffcb4ee1c4a274d1e5 | |
parent | eb2d64bfcc174919a921295a5327b99a3b8f4166 (diff) |
drm: xlnx: zynqmp_dpsub: Drop unused zynqmp_disp.event field
The event field of the zynqmp_disp structure is unused. Drop it.
Signed-off-by: Laurent Pinchart <[email protected]>
-rw-r--r-- | drivers/gpu/drm/xlnx/zynqmp_disp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xlnx/zynqmp_disp.c b/drivers/gpu/drm/xlnx/zynqmp_disp.c index bbb365f2d087..a168433456f7 100644 --- a/drivers/gpu/drm/xlnx/zynqmp_disp.c +++ b/drivers/gpu/drm/xlnx/zynqmp_disp.c @@ -171,7 +171,6 @@ struct zynqmp_disp_layer { * @audio.clk: Audio clock * @audio.clk_from_ps: True of the audio clock comes from PS, false from PL * @layers: Layers (planes) - * @event: Pending vblank event request * @pclk: Pixel clock * @pclk_from_ps: True of the video clock comes from PS, false from PL */ @@ -196,8 +195,6 @@ struct zynqmp_disp { struct zynqmp_disp_layer layers[ZYNQMP_DISP_NUM_LAYERS]; - struct drm_pending_vblank_event *event; - struct clk *pclk; bool pclk_from_ps; }; |