diff options
author | Thomas Zimmermann <[email protected]> | 2021-06-25 10:22:11 +0200 |
---|---|---|
committer | Thomas Zimmermann <[email protected]> | 2021-06-29 11:08:43 +0200 |
commit | 578b1cc6a6957fdc9d6e0da2f3c9017c93c5bbd8 (patch) | |
tree | 9568b97bfe79de60a6410233bc7338e8c4e5a54c | |
parent | daea75017cfcb6a2aa69956ab608212405d02afa (diff) |
drm/rcar-du: Don't set struct drm_device.irq_enabled
The field drm_device.irq_enabled is only used by legacy drivers
with userspace modesetting. Don't set it in rcar-du.
Signed-off-by: Thomas Zimmermann <[email protected]>
Reviewed-by: Laurent Pinchart <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_drv.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c index bfbff90588cb..e289a66594a7 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c @@ -593,8 +593,6 @@ static int rcar_du_probe(struct platform_device *pdev) goto error; } - rcdu->ddev.irq_enabled = 1; - /* * Register the DRM device with the core and the connectors with * sysfs. |