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

Commit e48060ce authored by Fabio Estevam's avatar Fabio Estevam Committed by Dmitry Torokhov
Browse files

Input: mxs-lradc - do a NULL check on iores



platform_get_resource() may fail, so we should better do a NULL check
and return error on failure.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 94aef061
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -630,6 +630,8 @@ static int mxs_lradc_ts_probe(struct platform_device *pdev)
	spin_lock_init(&ts->lock);

	iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!iores)
		return -EINVAL;
	ts->base = devm_ioremap(dev, iores->start, resource_size(iores));
	if (IS_ERR(ts->base))
		return PTR_ERR(ts->base);