From: Markus Elfring Date: Wed, 20 Dec 2017 09:12:56 +0000 (+0100) Subject: pinctrl/nomadik/abx500: Delete an error message for a failed memory allocation in... X-Git-Tag: v4.16-rc1~90^2~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8931dc0804a243bbe9bc45f72bf71307854177e5;p=thirdparty%2Fkernel%2Flinux.git pinctrl/nomadik/abx500: Delete an error message for a failed memory allocation in abx500_gpio_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: Markus Elfring Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/nomadik/pinctrl-abx500.c b/drivers/pinctrl/nomadik/pinctrl-abx500.c index b32c0d6020247..feb030d1ea632 100644 --- a/drivers/pinctrl/nomadik/pinctrl-abx500.c +++ b/drivers/pinctrl/nomadik/pinctrl-abx500.c @@ -1157,11 +1157,8 @@ static int abx500_gpio_probe(struct platform_device *pdev) pct = devm_kzalloc(&pdev->dev, sizeof(struct abx500_pinctrl), GFP_KERNEL); - if (pct == NULL) { - dev_err(&pdev->dev, - "failed to allocate memory for pct\n"); + if (!pct) return -ENOMEM; - } pct->dev = &pdev->dev; pct->parent = dev_get_drvdata(pdev->dev.parent);