From: Markus Elfring <[email protected]>
Date: Fri, 16 Feb 2018 16:01:12 +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 <[email protected]>
---
 drivers/ata/pata_arasan_cf.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/ata/pata_arasan_cf.c b/drivers/ata/pata_arasan_cf.c
index b4d54771c9fe..be5fbcedecbf 100644
--- a/drivers/ata/pata_arasan_cf.c
+++ b/drivers/ata/pata_arasan_cf.c
@@ -809,10 +809,8 @@ static int arasan_cf_probe(struct platform_device *pdev)
        }
 
        acdev = devm_kzalloc(&pdev->dev, sizeof(*acdev), GFP_KERNEL);
-       if (!acdev) {
-               dev_warn(&pdev->dev, "kzalloc fail\n");
+       if (!acdev)
                return -ENOMEM;
-       }
 
        if (pdata)
                quirk = pdata->quirk;
-- 
2.16.1

Reply via email to