mfd: janz-cmodio: Delete error message for a failed memory allocation
authorMarkus Elfring <elfring@users.sourceforge.net>
Sun, 14 Jan 2018 21:15:09 +0000 (22:15 +0100)
committerLee Jones <lee.jones@linaro.org>
Wed, 16 May 2018 08:21:48 +0000 (09:21 +0100)
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 <elfring@users.sourceforge.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/janz-cmodio.c

index ec1f46a..317a47a 100644 (file)
@@ -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;