Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59848db5 authored by Sachin Kamat's avatar Sachin Kamat Committed by Inki Dae
Browse files

drm/exynos: Use devm_kzalloc in exynos_drm_vidi.c file



devm_kzalloc is a device managed function and makes freeing and error
handling simpler.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
parent 16e19741
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -633,7 +633,7 @@ static int __devinit vidi_probe(struct platform_device *pdev)

	DRM_DEBUG_KMS("%s\n", __FILE__);

	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
	ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL);
	if (!ctx)
		return -ENOMEM;

@@ -673,8 +673,6 @@ static int __devexit vidi_remove(struct platform_device *pdev)
		ctx->raw_edid = NULL;
	}

	kfree(ctx);

	return 0;
}