diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2018-02-15 22:15:25 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2018-02-18 14:21:31 +0100 |
commit | 2c7d7598206d090b48796e66e77a40ed54537310 (patch) | |
tree | 0bdee8a9f1ab836d5a529c6767db786bc770f2de /drivers/ata/sata_dwc_460ex.c | |
parent | pata_samsung_cf: Delete an error message for a failed memory allocation in pa... (diff) | |
download | linux-2c7d7598206d090b48796e66e77a40ed54537310.tar.xz linux-2c7d7598206d090b48796e66e77a40ed54537310.zip |
sata_dwc_460ex: Delete an error message for a failed memory allocation in sata_dwc_port_start()
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>
Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/sata_dwc_460ex.c')
-rw-r--r-- | drivers/ata/sata_dwc_460ex.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ata/sata_dwc_460ex.c b/drivers/ata/sata_dwc_460ex.c index 6af4ec3c88c3..ce3d6674ef80 100644 --- a/drivers/ata/sata_dwc_460ex.c +++ b/drivers/ata/sata_dwc_460ex.c @@ -901,7 +901,6 @@ static int sata_dwc_port_start(struct ata_port *ap) /* Allocate Port Struct */ hsdevp = kzalloc(sizeof(*hsdevp), GFP_KERNEL); if (!hsdevp) { - dev_err(ap->dev, "%s: kmalloc failed for hsdevp\n", __func__); err = -ENOMEM; goto CLEANUP; } |