From: Markus Elfring Date: Sun, 14 Jan 2018 21:15:09 +0000 (+0100) Subject: mfd: janz-cmodio: Delete error message for a failed memory allocation X-Git-Tag: v4.19~819^2~72 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=292155bee199c60e31fe9c30c3135154837c86a9;p=platform%2Fkernel%2Flinux-rpi.git mfd: janz-cmodio: Delete error message for a failed memory allocation 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: Lee Jones --- diff --git a/drivers/mfd/janz-cmodio.c b/drivers/mfd/janz-cmodio.c index ec1f46a..317a47a 100644 --- a/drivers/mfd/janz-cmodio.c +++ b/drivers/mfd/janz-cmodio.c @@ -183,10 +183,8 @@ static int cmodio_pci_probe(struct pci_dev *dev, int ret; priv = devm_kzalloc(&dev->dev, sizeof(*priv), GFP_KERNEL); - if (!priv) { - dev_err(&dev->dev, "unable to allocate private data\n"); + if (!priv) return -ENOMEM; - } pci_set_drvdata(dev, priv); priv->pdev = dev;