Commit 320f07b4 authored by Dan Carpenter's avatar Dan Carpenter Committed by Dmitry Torokhov
Browse files

Input: msm-vibrator - tweak an error message



The PTR_ERR(NULL) value is zero and it's not useful to print that.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 0ab0e5a3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -199,8 +199,7 @@ static int msm_vibrator_probe(struct platform_device *pdev)
	vibrator->base = devm_ioremap(&pdev->dev, res->start,
				     resource_size(res));
	if (!vibrator->base) {
		dev_err(&pdev->dev, "Failed to iomap resource: %ld\n",
			PTR_ERR(vibrator->base));
		dev_err(&pdev->dev, "Failed to iomap resource.\n");
		return -ENOMEM;
	}