mirror of https://gitee.com/openkylin/linux.git
drm/exynos: remove unnecessary devm_kfree
devm_kfree does not need for fail case of probe function and for remove function. Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
This commit is contained in:
parent
a3ad6976fe
commit
7a1b00e072
|
@ -1748,7 +1748,6 @@ static int gsc_probe(struct platform_device *pdev)
|
|||
return 0;
|
||||
|
||||
err_ippdrv_register:
|
||||
devm_kfree(dev, ippdrv->prop_list);
|
||||
pm_runtime_disable(dev);
|
||||
err_get_irq:
|
||||
free_irq(ctx->irq, ctx);
|
||||
|
@ -1761,7 +1760,6 @@ static int gsc_remove(struct platform_device *pdev)
|
|||
struct gsc_context *ctx = get_gsc_context(dev);
|
||||
struct exynos_drm_ippdrv *ippdrv = &ctx->ippdrv;
|
||||
|
||||
devm_kfree(dev, ippdrv->prop_list);
|
||||
exynos_drm_ippdrv_unregister(ippdrv);
|
||||
mutex_destroy(&ctx->lock);
|
||||
|
||||
|
|
|
@ -709,7 +709,6 @@ static int rotator_probe(struct platform_device *pdev)
|
|||
return 0;
|
||||
|
||||
err_ippdrv_register:
|
||||
devm_kfree(dev, ippdrv->prop_list);
|
||||
pm_runtime_disable(dev);
|
||||
err_clk_get:
|
||||
free_irq(rot->irq, rot);
|
||||
|
@ -722,7 +721,6 @@ static int rotator_remove(struct platform_device *pdev)
|
|||
struct rot_context *rot = dev_get_drvdata(dev);
|
||||
struct exynos_drm_ippdrv *ippdrv = &rot->ippdrv;
|
||||
|
||||
devm_kfree(dev, ippdrv->prop_list);
|
||||
exynos_drm_ippdrv_unregister(ippdrv);
|
||||
|
||||
pm_runtime_disable(dev);
|
||||
|
|
Loading…
Reference in New Issue