diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2015-11-30 13:53:17 (GMT) |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2015-12-13 13:22:52 (GMT) |
commit | c155fb56399fcbb2214051c1e07061311d02c300 (patch) | |
tree | ea28c83063143d67882b6a9932e6fcf015ae28a5 /drivers/gpu/drm/exynos | |
parent | 0b102aaaa15e82b01e8026714a8eb6497cc9cdfe (diff) | |
download | linux-c155fb56399fcbb2214051c1e07061311d02c300.tar.xz |
drm/exynos: gsc: fix wrong pm_runtime state
At probe time, gsc clock is not enabled, so pm_runtime state should
be deactive. So this patch removes pm_runtime_set_active() from
gsc_probe().
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_gsc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_gsc.c b/drivers/gpu/drm/exynos/exynos_drm_gsc.c index 72a9c84..ed55d37 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_gsc.c +++ b/drivers/gpu/drm/exynos/exynos_drm_gsc.c @@ -1713,7 +1713,6 @@ static int gsc_probe(struct platform_device *pdev) mutex_init(&ctx->lock); platform_set_drvdata(pdev, ctx); - pm_runtime_set_active(dev); pm_runtime_enable(dev); ret = exynos_drm_ippdrv_register(ippdrv); |