drm/msm/mdp5: Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt <luisbg@kernel.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
35f135a3b1
commit
52a8988de9
|
@ -680,7 +680,7 @@ struct msm_kms *mdp5_kms_init(struct drm_device *dev)
|
||||||
} else {
|
} else {
|
||||||
dev_info(&pdev->dev,
|
dev_info(&pdev->dev,
|
||||||
"no iommu, fallback to phys contig buffers for scanout\n");
|
"no iommu, fallback to phys contig buffers for scanout\n");
|
||||||
aspace = NULL;;
|
aspace = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
pm_runtime_put_sync(&pdev->dev);
|
pm_runtime_put_sync(&pdev->dev);
|
||||||
|
|
Loading…
Reference in New Issue