Commit a14aa271 authored by Markus Elfring's avatar Markus Elfring Committed by Linus Walleij
Browse files

pinctrl: single: Delete an error message for a failed memory allocation in pcs_probe()



Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 85dc397a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1646,10 +1646,9 @@ static int pcs_probe(struct platform_device *pdev)
		return -EINVAL;

	pcs = devm_kzalloc(&pdev->dev, sizeof(*pcs), GFP_KERNEL);
	if (!pcs) {
		dev_err(&pdev->dev, "could not allocate\n");
	if (!pcs)
		return -ENOMEM;
	}

	pcs->dev = &pdev->dev;
	pcs->np = np;
	raw_spin_lock_init(&pcs->lock);