| From e9139ac146f98aee2d29abd7170311694a499b37 Mon Sep 17 00:00:00 2001 |
| From: Chuhong Yuan <hslester96@gmail.com> |
| Date: Mon, 18 Nov 2019 19:39:55 +0800 |
| Subject: [PATCH] drm/exynos: gsc: add missed component_del |
| |
| commit 84c92365b20a44c363b95390ea00dfbdd786f031 upstream. |
| |
| 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> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/drivers/gpu/drm/exynos/exynos_drm_gsc.c b/drivers/gpu/drm/exynos/exynos_drm_gsc.c |
| index 05b0fe21b81e..01e89395bfbf 100644 |
| --- a/drivers/gpu/drm/exynos/exynos_drm_gsc.c |
| +++ b/drivers/gpu/drm/exynos/exynos_drm_gsc.c |
| @@ -1310,6 +1310,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); |
| |
| -- |
| 2.7.4 |
| |