diff options
| author | Lyude Paul <[email protected]> | 2024-07-03 12:04:58 -0400 |
|---|---|---|
| committer | Maíra Canal <[email protected]> | 2024-07-07 15:03:54 -0300 |
| commit | f3a47a269119ade7ea22d0465c7fbe518ca1bdfc (patch) | |
| tree | 03db63a6072362155910af558345e3c3feea4471 | |
| parent | 2bf506b46d38e253693fb22e62469df4af4cbff1 (diff) | |
drm/vkms: Remove event from vkms_output
While working on rvkms, I noticed that there's no code that actually uses
the drm_pending_vblank_event that's embedded in vkms_output. So, just drop
the member from the struct.
Signed-off-by: Lyude Paul <[email protected]>
Reviewed-by: Louis Chauvet <[email protected]>
Tested-by: Louis Chauvet <[email protected]>
Reviewed-by: Maíra Canal <[email protected]>
Signed-off-by: Maíra Canal <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
| -rw-r--r-- | drivers/gpu/drm/vkms/vkms_drv.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vkms/vkms_drv.h b/drivers/gpu/drm/vkms/vkms_drv.h index 8f5710debb1e..5e46ea5b96dc 100644 --- a/drivers/gpu/drm/vkms/vkms_drv.h +++ b/drivers/gpu/drm/vkms/vkms_drv.h @@ -103,7 +103,6 @@ struct vkms_output { struct drm_writeback_connector wb_connector; struct hrtimer vblank_hrtimer; ktime_t period_ns; - struct drm_pending_vblank_event *event; /* ordered wq for composer_work */ struct workqueue_struct *composer_workq; /* protects concurrent access to composer */ |