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

Commit fe42cfb4 authored by Gustavo Padovan's avatar Gustavo Padovan Committed by Inki Dae
Browse files

drm/exynos/fimd: don't initialize 'ret' variable in fimd_probe()



We  set it in the beginning of the function, thus no need to set it at
initialization.

Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent 8837deea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1108,7 +1108,7 @@ static int fimd_probe(struct platform_device *pdev)
	struct fimd_context *ctx;
	struct device_node *i80_if_timings;
	struct resource *res;
	int ret = -EINVAL;
	int ret;

	if (!dev->of_node)
		return -ENODEV;