Commit ca5be902 authored by Linus Walleij's avatar Linus Walleij
Browse files

drm/mcde: Fix uninitialized variable

parent 1e612a0f
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -317,7 +317,7 @@ static int mcde_probe(struct platform_device *pdev)
	struct device *dev = &pdev->dev;
	struct drm_device *drm;
	struct mcde *mcde;
	struct component_match *match;
	struct component_match *match = NULL;
	struct resource *res;
	u32 pid;
	u32 val;
@@ -483,6 +483,10 @@ static int mcde_probe(struct platform_device *pdev)
		}
		put_device(p);
	}
	if (!match) {
		dev_err(dev, "no matching components\n");
		return -ENODEV;
	}
	if (IS_ERR(match)) {
		dev_err(dev, "could not create component match\n");
		ret = PTR_ERR(match);