diff options
author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2013-04-23 07:34:36 -0400 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2013-04-29 01:35:31 -0400 |
commit | 4c30cbc0b9c89d90c5a0d08bfb62d7a6b6c88d33 (patch) | |
tree | 59eacc67f864e3e7d7d4855c0391f5491349078b | |
parent | 11963a638f7ac30f926f4358f7f699828408bb96 (diff) |
drm/exynos: remove redundant devm_kfree()
There is no need for explicit calls of devm_kfree(), as
the allocated memory will be freed during driver's detach.
Remove the redundant devm_kfree() calls from probe() and
remove() callbacks.
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_fimc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimc.c b/drivers/gpu/drm/exynos/exynos_drm_fimc.c index 411f69b76e84..d812c5743eaf 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fimc.c +++ b/drivers/gpu/drm/exynos/exynos_drm_fimc.c | |||
@@ -1843,7 +1843,6 @@ static int fimc_probe(struct platform_device *pdev) | |||
1843 | return 0; | 1843 | return 0; |
1844 | 1844 | ||
1845 | err_ippdrv_register: | 1845 | err_ippdrv_register: |
1846 | devm_kfree(dev, ippdrv->prop_list); | ||
1847 | pm_runtime_disable(dev); | 1846 | pm_runtime_disable(dev); |
1848 | err_get_irq: | 1847 | err_get_irq: |
1849 | free_irq(ctx->irq, ctx); | 1848 | free_irq(ctx->irq, ctx); |
@@ -1857,7 +1856,6 @@ static int fimc_remove(struct platform_device *pdev) | |||
1857 | struct fimc_context *ctx = get_fimc_context(dev); | 1856 | struct fimc_context *ctx = get_fimc_context(dev); |
1858 | struct exynos_drm_ippdrv *ippdrv = &ctx->ippdrv; | 1857 | struct exynos_drm_ippdrv *ippdrv = &ctx->ippdrv; |
1859 | 1858 | ||
1860 | devm_kfree(dev, ippdrv->prop_list); | ||
1861 | exynos_drm_ippdrv_unregister(ippdrv); | 1859 | exynos_drm_ippdrv_unregister(ippdrv); |
1862 | mutex_destroy(&ctx->lock); | 1860 | mutex_destroy(&ctx->lock); |
1863 | 1861 | ||