Skip to content
Snippets Groups Projects
Commit 7d17a626 authored by Stefan Agner's avatar Stefan Agner
Browse files

drm/fsl-dcu: disable output polling on driver unload


Disabling output polling before unloading the driver.

Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
parent afb49e4d
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,8 @@ static int fsl_dcu_load(struct drm_device *dev, unsigned long flags)
return 0;
done:
drm_kms_helper_poll_fini(dev);
if (fsl_dev->fbdev)
drm_fbdev_cma_fini(fsl_dev->fbdev);
......@@ -106,6 +108,8 @@ static int fsl_dcu_unload(struct drm_device *dev)
{
struct fsl_dcu_drm_device *fsl_dev = dev->dev_private;
drm_kms_helper_poll_fini(dev);
if (fsl_dev->fbdev)
drm_fbdev_cma_fini(fsl_dev->fbdev);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment