diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-08-11 15:10:43 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-15 13:54:02 +0200 |
commit | 443be77e4b09d98c28196dca7132a1191ecf742b (patch) | |
tree | 2739141e46b75c4215c45ce84d6d412258a3ec4d /sound/soc/fsl/fsl_dma.c | |
parent | ASoC: fsl: make snd_soc_platform_driver const (diff) | |
download | linux-443be77e4b09d98c28196dca7132a1191ecf742b.tar.xz linux-443be77e4b09d98c28196dca7132a1191ecf742b.zip |
ASoC: Freescale: Delete an error message for a failed memory allocation in three functions
Omit an extra message for a memory allocation failure in these functions.
This issue was detected by using the Coccinelle software.
Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/fsl_dma.c')
-rw-r--r-- | sound/soc/fsl/fsl_dma.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/fsl/fsl_dma.c b/sound/soc/fsl/fsl_dma.c index 979ed1b3ecc4..c17359648915 100644 --- a/sound/soc/fsl/fsl_dma.c +++ b/sound/soc/fsl/fsl_dma.c @@ -905,7 +905,6 @@ static int fsl_soc_dma_probe(struct platform_device *pdev) dma = kzalloc(sizeof(*dma) + strlen(np->full_name), GFP_KERNEL); if (!dma) { - dev_err(&pdev->dev, "could not allocate dma object\n"); of_node_put(ssi_np); return -ENOMEM; } |