Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Chuhong Yuan and committed by
Inki Dae
84c92365 d1eef1c6

+1
+1
drivers/gpu/drm/exynos/exynos_drm_gsc.c
··· 1313 1313 { 1314 1314 struct device *dev = &pdev->dev; 1315 1315 1316 + component_del(dev, &gsc_component_ops); 1316 1317 pm_runtime_dont_use_autosuspend(dev); 1317 1318 pm_runtime_disable(dev); 1318 1319