mfd: jz4740-adc: Delete error message for a failed memory allocation
authorMarkus Elfring <elfring@users.sourceforge.net>
Sun, 14 Jan 2018 21:26:21 +0000 (22:26 +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/jz4740-adc.c

index 798e44306382e1bb12dc37a3727d74a912846631..f4cd14294b61405273750ee025a01012eeb0bdd2 100644 (file)
@@ -212,10 +212,8 @@ static int jz4740_adc_probe(struct platform_device *pdev)
        int irq_base;
 
        adc = devm_kzalloc(&pdev->dev, sizeof(*adc), GFP_KERNEL);
-       if (!adc) {
-               dev_err(&pdev->dev, "Failed to allocate driver structure\n");
+       if (!adc)
                return -ENOMEM;
-       }
 
        adc->irq = platform_get_irq(pdev, 0);
        if (adc->irq < 0) {