[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <b9749bf6-0bbb-2b2d-b946-aae893f3e305@users.sourceforge.net>
Date: Fri, 16 Feb 2018 11:44:13 +0100
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-ide@...r.kernel.org,
Bartlomiej Zolnierkiewicz <b.zolnierkie@...sung.com>,
Tejun Heo <tj@...nel.org>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: [PATCH] pata_mpc52xx: Delete an error message for a failed memory
allocation in mpc52xx_ata_probe()
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Fri, 16 Feb 2018 11:34:53 +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@...rs.sourceforge.net>
---
drivers/ata/pata_mpc52xx.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/ata/pata_mpc52xx.c b/drivers/ata/pata_mpc52xx.c
index 9730125530f6..f1d352d5f128 100644
--- a/drivers/ata/pata_mpc52xx.c
+++ b/drivers/ata/pata_mpc52xx.c
@@ -738,7 +738,6 @@ static int mpc52xx_ata_probe(struct platform_device *op)
/* Prepare our private structure */
priv = devm_kzalloc(&op->dev, sizeof(*priv), GFP_ATOMIC);
if (!priv) {
- dev_err(&op->dev, "error allocating private structure\n");
rv = -ENOMEM;
goto err1;
}
--
2.16.1
Powered by blists - more mailing lists