mirror of https://gitee.com/openkylin/linux.git
drm/exynos: gsc: add missed component_del
The driver forgets to call component_del in remove to match component_add in probe. Add the missed call to fix it. Signed-off-by: Chuhong Yuan <hslester96@gmail.com> Signed-off-by: Inki Dae <inki.dae@samsung.net>
This commit is contained in:
parent
d1eef1c619
commit
84c92365b2
|
@ -1313,6 +1313,7 @@ static int gsc_remove(struct platform_device *pdev)
|
|||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
|
||||
component_del(dev, &gsc_component_ops);
|
||||
pm_runtime_dont_use_autosuspend(dev);
|
||||
pm_runtime_disable(dev);
|
||||
|
||||
|
|
Loading…
Reference in New Issue