projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d27a30b
)
ARM: OMAP1: DMA: Delete an error message for a failed memory allocation in omap1_syst...
author
Markus Elfring
<elfring@users.sourceforge.net>
Thu, 1 Jun 2017 19:54:36 +0000
(21:54 +0200)
committer
Tony Lindgren
<tony@atomide.com>
Wed, 7 Jun 2017 06:53:55 +0000
(23:53 -0700)
Omit an extra message for a memory allocation failure in this function.
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: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap1/dma.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-omap1/dma.c
b/arch/arm/mach-omap1/dma.c
index
823dba3
..
c545b4e
100644
(file)
--- a/
arch/arm/mach-omap1/dma.c
+++ b/
arch/arm/mach-omap1/dma.c
@@
-341,8
+341,6
@@
static int __init omap1_system_dma_init(void)
d = kzalloc(sizeof(*d), GFP_KERNEL);
if (!d) {
- dev_err(&pdev->dev, "%s: Unable to allocate 'd' for %s\n",
- __func__, pdev->name);
ret = -ENOMEM;
goto exit_iounmap;
}